Files
tbd-station-14/Content.Shared/Smoking/SmokableState.cs

14 lines
218 B
C#

using System;
using Robust.Shared.Serialization;
namespace Content.Shared.Smoking
{
[Serializable, NetSerializable]
public enum SmokableState : byte
{
Unlit,
Lit,
Burnt,
}
}