27 lines
463 B
C#
27 lines
463 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Power
|
|
{
|
|
[Serializable, NetSerializable]
|
|
public enum ChargeState
|
|
{
|
|
Still,
|
|
Charging,
|
|
Discharging,
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum PowerWireActionKey : byte
|
|
{
|
|
Key,
|
|
Status,
|
|
Pulsed,
|
|
Electrified,
|
|
PulseCancel,
|
|
ElectrifiedCancel,
|
|
MainWire,
|
|
WireCount,
|
|
CutWires
|
|
}
|
|
}
|