Kav/EffectInterfaces/PointLightEffect.cs

8 lines
157 B
C#
Raw Normal View History

2020-08-04 09:32:02 +00:00
namespace Kav
{
public interface PointLightEffect
{
2020-08-05 19:15:22 +00:00
PointLightCollection PointLights { get; } // TODO: should be a collection class?
2020-08-04 09:32:02 +00:00
}
}