1
0

ApcPowerReceiverComponentState.cs 271 B

1234567891011
  1. using Robust.Shared.Serialization;
  2. namespace Content.Shared.Power.Components;
  3. [Serializable, NetSerializable]
  4. public sealed class ApcPowerReceiverComponentState : ComponentState
  5. {
  6. public bool Powered;
  7. public bool NeedsPower;
  8. public bool PowerDisabled;
  9. }