11 lines
203 B
C#
11 lines
203 B
C#
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Server.MachineLinking.Components
|
|
{
|
|
[RegisterComponent]
|
|
public class SignalSwitchComponent : Component
|
|
{
|
|
public bool State;
|
|
}
|
|
}
|