Files
wwdpublic/Content.Shared/Power/Components/ApcPowerReceiverComponentState.cs
metalgearsloth 6e10efe4aa Predict some power PowerReceiver stuff (#33834)
* Predict some power PowerReceiver stuff

Need it for some atmos device prediction.

* Also this

(cherry picked from commit 75a7407e33f328c230ad7309b0d1571a4f7f8256)
2026-02-11 19:44:36 +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;
}