12 lines
214 B
C#
12 lines
214 B
C#
|
|
using System;
|
|||
|
|
using Robust.Shared.Serialization;
|
|||
|
|
|
|||
|
|
namespace Content.Shared.GameObjects.Components.Singularity
|
|||
|
|
{
|
|||
|
|
[Serializable, NetSerializable]
|
|||
|
|
public enum SingularityVisuals
|
|||
|
|
{
|
|||
|
|
Level
|
|||
|
|
}
|
|||
|
|
}
|