Files
tbd-station-14/Content.Shared/Power/SharedPowerDevice.cs
2023-04-13 16:21:24 +10:00

12 lines
198 B
C#

using Robust.Shared.Serialization;
namespace Content.Shared.Power
{
[Serializable, NetSerializable]
public enum PowerDeviceVisuals : byte
{
VisualState,
Powered
}
}