14 lines
292 B
C#
14 lines
292 B
C#
using Content.Shared.MachineLinking;
|
|
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Server.MachineLinking.Components
|
|
{
|
|
[RegisterComponent]
|
|
public class TwoWayLeverComponent : Component
|
|
{
|
|
public TwoWayLeverSignal State;
|
|
|
|
public bool NextSignalLeft;
|
|
}
|
|
}
|