Kav/EffectInterfaces/PointLightEffect.cs

9 lines
154 B
C#
Raw Normal View History

2020-08-04 09:32:02 +00:00
namespace Kav
{
public interface PointLightEffect
{
int MaxPointLights { get; }
PointLightCollection PointLights { get; }
2020-08-04 09:32:02 +00:00
}
}