14 lines
241 B
C#
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,
|
|
}
|
|
}
|