Files
crystall-punk-14/Content.Shared/Power/SharedPower.cs

27 lines
482 B
C#
Raw Normal View History

2022-05-13 00:59:03 -07:00
using Robust.Shared.Serialization;
2021-06-09 22:19:39 +02:00
namespace Content.Shared.Power
{
[Serializable, NetSerializable]
public enum ChargeState : byte
{
Still = 0,
Charging = 1,
Discharging = 2,
}
[Serializable, NetSerializable]
public enum PowerWireActionKey : byte
{
Key,
Status,
Pulsed,
Electrified,
PulseCancel,
2022-05-23 16:00:51 -07:00
ElectrifiedCancel,
MainWire,
WireCount,
CutWires
}
}