15 lines
388 B
C#
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;
|
|
}
|
|
}
|