mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 05:59:03 +03:00
19 lines
325 B
C#
19 lines
325 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Cloning
|
|
{
|
|
[Serializable, NetSerializable]
|
|
public enum CloningPodVisuals : byte
|
|
{
|
|
Status
|
|
}
|
|
[Serializable, NetSerializable]
|
|
public enum CloningPodStatus : byte
|
|
{
|
|
Idle,
|
|
Cloning,
|
|
Gore,
|
|
NoMind
|
|
}
|
|
}
|