mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-21 23:48:15 +03:00
* 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,
|
|
}
|
|
}
|