12 lines
208 B
C#
12 lines
208 B
C#
|
|
using System;
|
|||
|
|
using Robust.Shared.Serialization;
|
|||
|
|
|
|||
|
|
namespace Content.Shared.GameObjects.Components
|
|||
|
|
{
|
|||
|
|
[Serializable, NetSerializable]
|
|||
|
|
public enum SmokingVisuals : byte
|
|||
|
|
{
|
|||
|
|
Smoking,
|
|||
|
|
}
|
|||
|
|
}
|