Files
crystall-punk-14/Content.Shared/MachineLinking/TwoWayLeverSignal.cs

19 lines
320 B
C#
Raw Normal View History

2022-05-13 00:59:03 -07:00
using Robust.Shared.Serialization;
2021-06-09 22:19:39 +02:00
namespace Content.Shared.MachineLinking
{
[Serializable, NetSerializable]
public enum TwoWayLeverVisuals : byte
{
State
}
[Serializable, NetSerializable]
2022-04-04 01:13:03 -05:00
public enum TwoWayLeverState : byte
{
Middle,
Right,
Left
}
}