1
0

SharedApcPowerReceiverComponent.cs 367 B

12345678910111213141516
  1. using Robust.Shared.GameStates;
  2. namespace Content.Shared.Power.Components;
  3. [NetworkedComponent]
  4. public abstract partial class SharedApcPowerReceiverComponent : Component
  5. {
  6. [ViewVariables]
  7. public bool Powered;
  8. [ViewVariables]
  9. public virtual bool NeedsPower { get; set; }
  10. [ViewVariables]
  11. public virtual bool PowerDisabled { get; set; }
  12. }