* add paper label component * git mv * rename namespace * add cargo printouts * more crates * directly attach paper * comment typo
21 lines
336 B
C#
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,
|
|
}
|
|
}
|