Files
tbd-station-14/Content.Shared/Power/SharedPowerDevice.cs
2025-02-24 00:39:44 +11:00

13 lines
222 B
C#

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