Continued with lighting

This commit is contained in:
Michel Fedde 2020-12-14 15:52:14 +01:00
parent 597a14743b
commit e88d972ecc
12 changed files with 95 additions and 6 deletions

View file

@ -0,0 +1,7 @@
namespace SM2D.Light
{
public class PointLight : LightObject
{
internal override int Type { get; } = 0;
}
}