Files

25 lines
364 B
C#
Raw Permalink Normal View History

2022-07-13 19:11:59 -04:00
using Robust.Shared.Serialization;
2022-07-13 19:11:59 -04:00
namespace Content.Shared.Morgue;
[Serializable, NetSerializable]
2022-07-14 17:25:44 +12:00
public enum MorgueVisuals : byte
{
2022-07-14 17:25:44 +12:00
Contents
}
[Serializable, NetSerializable]
public enum MorgueContents : byte
{
Empty,
2022-07-13 19:11:59 -04:00
HasMob,
HasSoul,
2022-07-14 17:25:44 +12:00
HasContents,
2022-07-13 19:11:59 -04:00
}
2022-07-13 19:11:59 -04:00
[Serializable, NetSerializable]
2022-07-14 17:25:44 +12:00
public enum CrematoriumVisuals : byte
2022-07-13 19:11:59 -04:00
{
Burning,
}