Files
tbd-station-14/Content.Server/DeviceNetwork/Components/Devices/ApcNetSwitchComponent.cs
2022-05-13 17:59:03 +10:00

12 lines
296 B
C#

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