| 12345678910111213141516171819202122232425262728293031323334 |
- 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,
- }
- }
|