mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-21 07:28:31 +03:00
20 lines
335 B
C#
20 lines
335 B
C#
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
|
|
}
|
|
}
|