6
2025-12-13 13:46:17 +03:00

35 lines
611 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
}
[Serializable, NetSerializable]
public enum CableType
{
HighVoltage,
MediumVoltage,
Apc,
}
}