Files
OldThink/Content.Shared/GameObjects/Components/MachineLinking/SignalSwitchVisuals.cs

12 lines
215 B
C#
Raw Normal View History

using System;
using Robust.Shared.Serialization;
namespace Content.Shared.GameObjects.Components.MachineLinking
{
[Serializable, NetSerializable]
public enum SignalSwitchVisuals
{
On
}
}