Files
tbd-station-14/Content.Shared/MachineLinking/TwoWayLeverSignal.cs
2022-04-04 16:13:03 +10:00

20 lines
334 B
C#

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