6
StarHorizon_Public/Content.Shared/Power/Components/ApcPowerReceiverComponentState.cs
2025-11-15 12:24:44 +03:00

12 lines
271 B
C#

using Robust.Shared.Serialization;
namespace Content.Shared.Power.Components;
[Serializable, NetSerializable]
public sealed class ApcPowerReceiverComponentState : ComponentState
{
public bool Powered;
public bool NeedsPower;
public bool PowerDisabled;
}