Move UnpoweredFlashlight to shared (#27449)

This commit is contained in:
Leon Friedrich
2024-04-29 15:22:11 +12:00
committed by GitHub
parent a1b12f95a5
commit a466b35b27
7 changed files with 137 additions and 132 deletions

View File

@@ -0,0 +1,6 @@
namespace Content.Shared.Light;
public sealed class LightToggleEvent(bool isOn) : EntityEventArgs
{
public bool IsOn = isOn;
}