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