27 lines
431 B
C#
27 lines
431 B
C#
using System;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Morgue
|
|
{
|
|
[Serializable, NetSerializable]
|
|
public enum MorgueVisuals
|
|
{
|
|
Open,
|
|
HasContents,
|
|
HasMob,
|
|
HasSoul,
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum CrematoriumVisuals
|
|
{
|
|
Burning,
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum BodyBagVisuals
|
|
{
|
|
Label,
|
|
}
|
|
}
|