8 lines
149 B
C#
8 lines
149 B
C#
|
namespace Kav
|
||
|
{
|
||
|
public interface PointLightEffect
|
||
|
{
|
||
|
PointLight[] PointLights { get; } // TODO: should be a collection class?
|
||
|
}
|
||
|
}
|