Files
tbd-station-14/Content.Server/DeviceNetwork/Components/Devices/ApcNetSwitchComponent.cs

12 lines
296 B
C#

using Content.Server.DeviceNetwork.Systems.Devices;
namespace Content.Server.DeviceNetwork.Components.Devices
{
[RegisterComponent]
[Access(typeof(ApcNetSwitchSystem))]
public sealed class ApcNetSwitchComponent : Component
{
[ViewVariables] public bool State;
}
}