Files
tbd-station-14/Content.Shared/Morgue/SharedMorgue.cs
Leon Friedrich 88df3d8b10 Cargo: pizza & bureaucracy (#5123)
* add paper label component

* git mv

* rename namespace

* add cargo printouts

* more crates

* directly attach paper

* comment typo
2021-11-11 00:15:23 +11:00

21 lines
336 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,
}
}