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