31 lines
681 B
C#
31 lines
681 B
C#
using System;
|
|
using SS14.Shared.Serialization;
|
|
|
|
namespace Content.Shared.GameObjects.Components.Power
|
|
{
|
|
[Serializable, NetSerializable]
|
|
public enum ApcVisuals
|
|
{
|
|
ChargeState
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum ApcChargeState
|
|
{
|
|
/// <summary>
|
|
/// APC does not have enough power to charge cell (if necessary) and keep powering the area.
|
|
/// </summary>
|
|
Lack,
|
|
|
|
/// <summary>
|
|
/// APC is not full but has enough power.
|
|
/// </summary>
|
|
Charging,
|
|
|
|
/// <summary>
|
|
/// APC battery is full and has enough power.
|
|
/// </summary>
|
|
Full,
|
|
}
|
|
}
|