Files
crystall-punk-14/Content.Shared/GameObjects/Components/Power/SharedPowerDevice.cs

14 lines
245 B
C#
Raw Normal View History

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