Files
tbd-station-14/Content.Shared/MachineLinking/TwoWayLeverSignal.cs
2021-06-09 22:19:39 +02:00

21 lines
352 B
C#

#nullable enable
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
}
}