15 lines
262 B
C#
15 lines
262 B
C#
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Server.Light.Events
|
|
{
|
|
public sealed class LightToggleEvent : EntityEventArgs
|
|
{
|
|
public bool IsOn;
|
|
|
|
public LightToggleEvent(bool isOn)
|
|
{
|
|
IsOn = isOn;
|
|
}
|
|
}
|
|
}
|