Files
OldThink/Content.Server/MachineLinking/Components/TwoWayLeverComponent.cs

14 lines
298 B
C#
Raw Normal View History

using Content.Shared.MachineLinking;
using Robust.Shared.GameObjects;
namespace Content.Server.MachineLinking.Components
{
[RegisterComponent]
public sealed class TwoWayLeverComponent : Component
{
2022-04-04 01:13:03 -05:00
public TwoWayLeverState State;
public bool NextSignalLeft;
}
}