mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 13:37:47 +03:00
21 lines
353 B
C#
21 lines
353 B
C#
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,
|
|
}
|
|
}
|