Files
crystall-punk-14/Content.Shared/PowerCell/SharedPowerCell.cs

17 lines
296 B
C#
Raw Normal View History

2018-09-21 08:21:40 +02:00
using System;
using Robust.Shared.Serialization;
2018-09-21 08:21:40 +02:00
2021-06-09 22:19:39 +02:00
namespace Content.Shared.PowerCell
2018-09-21 08:21:40 +02:00
{
public static class SharedPowerCell
{
public const int PowerCellVisualsLevels = 4;
}
2018-09-21 08:21:40 +02:00
[Serializable, NetSerializable]
public enum PowerCellVisuals
{
ChargeLevel
}
}