smrendererv3/SMCode/SM2D/Light/LightObjects/PointLight.cs
2020-12-14 15:52:14 +01:00

7 lines
No EOL
130 B
C#

namespace SM2D.Light
{
public class PointLight : LightObject
{
internal override int Type { get; } = 0;
}
}