mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 05:27:38 +03:00
* Predict some power PowerReceiver stuff Need it for some atmos device prediction. * Also this (cherry picked from commit 75a7407e33f328c230ad7309b0d1571a4f7f8256)
17 lines
367 B
C#
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; }
|
|
}
|