Files
tbd-station-14/Content.Shared/Power/SharedPowerDevice.cs
2021-06-09 22:19:39 +02:00

14 lines
222 B
C#

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