Files
OldThink/Content.Shared/Power/SharedPower.cs

25 lines
422 B
C#
Raw Normal View History

using System;
using Robust.Shared.Serialization;
2021-06-09 22:19:39 +02:00
namespace Content.Shared.Power
{
[Serializable, NetSerializable]
public enum ChargeState
{
Still,
Charging,
Discharging,
}
[Serializable, NetSerializable]
public enum PowerWireActionKey : byte
{
Key,
Status,
Pulsed,
Electrified,
PulseCancel,
ElectrifiedCancel
}
}