Files
tbd-station-14/Content.Shared/MachineLinking/TwoWayLeverSignal.cs
2021-07-16 17:37:09 -07:00

20 lines
335 B
C#

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