11 lines
185 B
C#
11 lines
185 B
C#
|
|
using Robust.Shared.Serialization;
|
||
|
|
|
||
|
|
namespace Content.Shared.Light
|
||
|
|
{
|
||
|
|
[Serializable, NetSerializable]
|
||
|
|
public enum UnpoweredFlashlightVisuals : byte
|
||
|
|
{
|
||
|
|
LightOn
|
||
|
|
}
|
||
|
|
}
|