2019-10-14 09:57:57 +02:00
|
|
|
using System;
|
|
|
|
|
using Robust.Shared.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.GameObjects.Components.Power
|
|
|
|
|
{
|
|
|
|
|
[Serializable, NetSerializable]
|
|
|
|
|
public enum PowerDeviceVisuals
|
|
|
|
|
{
|
2020-03-15 17:55:20 +01:00
|
|
|
VisualState,
|
2019-10-14 09:57:57 +02:00
|
|
|
Powered
|
|
|
|
|
}
|
|
|
|
|
}
|