Files
tbd-station-14/Content.Shared/Light/LightToggleEvent.cs
2024-04-29 13:22:11 +10:00

7 lines
132 B
C#

namespace Content.Shared.Light;
public sealed class LightToggleEvent(bool isOn) : EntityEventArgs
{
public bool IsOn = isOn;
}