27 lines
482 B
C#
27 lines
482 B
C#
using Robust.Shared.Serialization;
|
|
|
|
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,
|
|
ElectrifiedCancel,
|
|
MainWire,
|
|
WireCount,
|
|
CutWires
|
|
}
|
|
}
|