Files
RobustToolbox/Robust.Client/Interfaces/Graphics/Lighting/ILightManager.cs
T
Pieter-Jan Briers fdfbf92223 Remove a ton of lighting system cruft.
Basically just kills the light manager.
Clyde was already using the ECS anyways.
2019-07-30 13:31:05 +02:00

8 lines
142 B
C#

namespace Robust.Client.Interfaces.Graphics.Lighting
{
public interface ILightManager
{
bool Enabled { get; set; }
}
}