6
2025-12-27 15:27:38 +03:00

19 lines
319 B
C#

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