2023-04-29 11:09:11 +02:00
|
|
|
using Robust.Shared.Serialization;
|
2021-01-11 00:17:28 +01:00
|
|
|
|
2021-06-09 22:19:39 +02:00
|
|
|
namespace Content.Shared.Smoking
|
2021-01-11 00:17:28 +01:00
|
|
|
{
|
|
|
|
|
[Serializable, NetSerializable]
|
2021-09-26 15:19:00 +02:00
|
|
|
public enum SmokableState : byte
|
2021-01-11 00:17:28 +01:00
|
|
|
{
|
|
|
|
|
Unlit,
|
|
|
|
|
Lit,
|
|
|
|
|
Burnt,
|
|
|
|
|
}
|
|
|
|
|
}
|