13 lines
213 B
C#
13 lines
213 B
C#
using System;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.SMES
|
|
{
|
|
[Serializable, NetSerializable]
|
|
public enum SmesVisuals
|
|
{
|
|
LastChargeState,
|
|
LastChargeLevel,
|
|
}
|
|
}
|