ApcNetSwitchComponent.cs 304 B

1234567891011
  1. using Content.Server.DeviceNetwork.Systems.Devices;
  2. namespace Content.Server.DeviceNetwork.Components.Devices
  3. {
  4. [RegisterComponent]
  5. [Access(typeof(ApcNetSwitchSystem))]
  6. public sealed partial class ApcNetSwitchComponent : Component
  7. {
  8. [ViewVariables] public bool State;
  9. }
  10. }