Files
tbd-station-14/Content.Shared/GameObjects/Components/Power/SharedPower.cs
py01 23cc6b1d4e Power Rework (#863)
Co-authored-by: py01 <pyronetics01@gmail.com>
2020-06-28 17:23:26 +02:00

14 lines
241 B
C#

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