Files
tbd-station-14/Content.Shared/Power/Components/ApcPowerReceiverComponentState.cs
metalgearsloth 75a7407e33 Predict some power PowerReceiver stuff (#33834)
* Predict some power PowerReceiver stuff

Need it for some atmos device prediction.

* Also this
2025-03-10 13:00:49 +11: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;
}