Files
crystall-punk-14/Content.Shared/Smoking/SmokableState.cs

14 lines
218 B
C#
Raw Normal View History

using System;
using Robust.Shared.Serialization;
2021-06-09 22:19:39 +02:00
namespace Content.Shared.Smoking
{
[Serializable, NetSerializable]
public enum SmokableState : byte
{
Unlit,
Lit,
Burnt,
}
}