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