Kav/EffectInterfaces/PointLightEffect.cs

8 lines
157 B
C#

namespace Kav
{
public interface PointLightEffect
{
PointLightCollection PointLights { get; } // TODO: should be a collection class?
}
}