Files
tbd-station-14/Content.Shared/Power/SharedPower.cs
2021-07-16 17:37:09 -07:00

14 lines
218 B
C#

using System;
using Robust.Shared.Serialization;
namespace Content.Shared.Power
{
[Serializable, NetSerializable]
public enum ChargeState
{
Still,
Charging,
Discharging,
}
}