2022-07-13 19:11:59 -04:00
|
|
|
using Robust.Shared.Serialization;
|
2020-10-28 22:51:43 +00:00
|
|
|
|
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
|
2020-10-28 22:51:43 +00:00
|
|
|
{
|
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
|
|
|
}
|
2020-10-28 22:51:43 +00: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,
|
2020-10-28 22:51:43 +00:00
|
|
|
}
|