Delta-v/Content.Server/MachineLinking/Components/TwoWayLeverComponent.cs

16 lines
347 B
C#

using Content.Shared.MachineLinking;
using Robust.Shared.GameObjects;
namespace Content.Server.MachineLinking.Components
{
[RegisterComponent]
public class TwoWayLeverComponent : Component
{
public override string Name => "TwoWayLever";
public TwoWayLeverSignal State;
public bool NextSignalLeft;
}
}