12 lines
196 B
C#
12 lines
196 B
C#
using System;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Light.Component
|
|
{
|
|
[Serializable, NetSerializable]
|
|
public enum EmergencyLightVisuals
|
|
{
|
|
On,
|
|
}
|
|
}
|