Files
tbd-station-14/Content.Server/MachineLinking/Components/TwoWayLeverComponent.cs
2022-04-04 16:13:03 +10:00

14 lines
298 B
C#

using Content.Shared.MachineLinking;
using Robust.Shared.GameObjects;
namespace Content.Server.MachineLinking.Components
{
[RegisterComponent]
public sealed class TwoWayLeverComponent : Component
{
public TwoWayLeverState State;
public bool NextSignalLeft;
}
}