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