Files
tbd-station-14/Content.Shared/Morgue/SharedMorgue.cs
2021-06-09 22:19:39 +02:00

28 lines
448 B
C#

#nullable enable
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,
}
}