22 lines
367 B
C#
22 lines
367 B
C#
using System;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Power
|
|
{
|
|
[Serializable, NetSerializable]
|
|
public enum CellChargerStatus
|
|
{
|
|
Off,
|
|
Empty,
|
|
Charging,
|
|
Charged,
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum CellVisual
|
|
{
|
|
Occupied, // If there's an item in it
|
|
Light,
|
|
}
|
|
}
|