Files
tbd-station-14/Content.Shared/Power/Components/SharedApcPowerReceiverComponent.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

17 lines
367 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared.Power.Components;
[NetworkedComponent]
public abstract partial class SharedApcPowerReceiverComponent : Component
{
[ViewVariables]
public bool Powered;
[ViewVariables]
public virtual bool NeedsPower { get; set; }
[ViewVariables]
public virtual bool PowerDisabled { get; set; }
}