Delta-v/Content.Shared/Power/SharedPowerDevice.cs

13 lines
205 B
C#

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