Files
tbd-station-14/Content.Server/MachineLinking/Components/TwoWayLeverComponent.cs
2022-02-02 14:35:40 +11:00

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;
}
}