Files
tbd-station-14/Content.Shared/PowerCell/SharedPowerCell.cs
2021-07-16 17:37:09 -07:00

17 lines
296 B
C#

using System;
using Robust.Shared.Serialization;
namespace Content.Shared.PowerCell
{
public static class SharedPowerCell
{
public const int PowerCellVisualsLevels = 4;
}
[Serializable, NetSerializable]
public enum PowerCellVisuals
{
ChargeLevel
}
}