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

19 lines
319 B
C#
Raw Permalink Normal View History

2022-05-13 00:59:03 -07:00
using Robust.Shared.Serialization;
namespace Content.Shared.DeviceLinking
{
[Serializable, NetSerializable]
public enum TwoWayLeverVisuals : byte
{
State
}
[Serializable, NetSerializable]
2022-04-04 01:13:03 -05:00
public enum TwoWayLeverState : byte
{
Middle,
Right,
Left
}
}