mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-20 15:08:46 +03:00
20 lines
322 B
C#
20 lines
322 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Morgue
|
|
{
|
|
[Serializable, NetSerializable]
|
|
public enum MorgueVisuals
|
|
{
|
|
Open,
|
|
HasContents,
|
|
HasMob,
|
|
HasSoul,
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum CrematoriumVisuals
|
|
{
|
|
Burning,
|
|
}
|
|
}
|