12 lines
215 B
C#
12 lines
215 B
C#
|
|
using System;
|
|||
|
|
using Robust.Shared.Serialization;
|
|||
|
|
|
|||
|
|
namespace Content.Shared.GameObjects.Components.MachineLinking
|
|||
|
|
{
|
|||
|
|
[Serializable, NetSerializable]
|
|||
|
|
public enum SignalSwitchVisuals
|
|||
|
|
{
|
|||
|
|
On
|
|||
|
|
}
|
|||
|
|
}
|