Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Co-authored-by: Kara <lunarautomaton6@gmail.com>
25 lines
422 B
C#
25 lines
422 B
C#
using System;
|
|
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
|
|
}
|
|
}
|