Files
tbd-station-14/Content.Server/DeviceNetwork/Components/Devices/ApcNetSwitchComponent.cs
2022-02-02 14:35:40 +11:00

15 lines
388 B
C#

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