Files
crystall-punk-14/Content.Shared/Light/LightToggleEvent.cs

7 lines
132 B
C#
Raw Permalink Normal View History

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