Files
tbd-station-14/Content.Shared/MachineLinking/TwoWayLeverSignal.cs
2022-05-13 17:59:03 +10:00

19 lines
320 B
C#

using Robust.Shared.Serialization;
namespace Content.Shared.MachineLinking
{
[Serializable, NetSerializable]
public enum TwoWayLeverVisuals : byte
{
State
}
[Serializable, NetSerializable]
public enum TwoWayLeverState : byte
{
Middle,
Right,
Left
}
}