mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-02 18:17:09 +02:00
10 lines
215 B
C#
10 lines
215 B
C#
using Robust.Client.Interfaces.Graphics.Lighting;
|
|
|
|
namespace Robust.Client.Graphics.Lighting
|
|
{
|
|
public sealed class LightManager : ILightManager
|
|
{
|
|
public bool Enabled { get; set; } = true;
|
|
}
|
|
}
|