Kav/PointLightEffect.cs

8 lines
149 B
C#
Raw Normal View History

2020-08-04 09:32:02 +00:00
namespace Kav
{
public interface PointLightEffect
{
PointLight[] PointLights { get; } // TODO: should be a collection class?
}
}