Files
tbd-station-14/Content.Shared/PowerCell/SharedPowerCell.cs
2021-06-09 22:19:39 +02:00

18 lines
313 B
C#

#nullable enable
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
}
}