Files
OldThink/Content.Shared/GameObjects/Components/Power/SharedPowerDeviceComponent.cs

12 lines
207 B
C#
Raw Normal View History

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