Files
crystall-punk-14/Content.Shared/GameObjects/Components/SmokingVisuals.cs

13 lines
225 B
C#
Raw Normal View History

#nullable enable
using System;
using Robust.Shared.Serialization;
namespace Content.Shared.GameObjects.Components
{
[Serializable, NetSerializable]
public enum SmokingVisuals : byte
{
Smoking,
}
}