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

14 lines
230 B
C#

#nullable enable
using System;
using Robust.Shared.Serialization;
namespace Content.Shared.SMES
{
[Serializable, NetSerializable]
public enum SmesVisuals
{
LastChargeState,
LastChargeLevel,
}
}