13 lines
205 B
C#
13 lines
205 B
C#
#nullable enable
|
|
using System;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Smoking
|
|
{
|
|
[Serializable, NetSerializable]
|
|
public enum SmokeVisuals : byte
|
|
{
|
|
Color
|
|
}
|
|
}
|