13 lines
228 B
C#
13 lines
228 B
C#
using System;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.GameObjects.Components.Power
|
|
{
|
|
[Serializable, NetSerializable]
|
|
public enum PowerDeviceVisuals
|
|
{
|
|
VisualState,
|
|
Powered
|
|
}
|
|
}
|