2019-10-14 09:57:57 +02:00
|
|
|
using Robust.Shared.Serialization;
|
|
|
|
|
|
2021-06-09 22:19:39 +02:00
|
|
|
namespace Content.Shared.Power
|
2019-10-14 09:57:57 +02:00
|
|
|
{
|
|
|
|
|
[Serializable, NetSerializable]
|
2023-04-13 16:21:24 +10:00
|
|
|
public enum PowerDeviceVisuals : byte
|
2019-10-14 09:57:57 +02:00
|
|
|
{
|
2020-03-15 17:55:20 +01:00
|
|
|
VisualState,
|
2019-10-14 09:57:57 +02:00
|
|
|
Powered
|
|
|
|
|
}
|
|
|
|
|
}
|