6
2026-01-13 18:31:02 +02:00

18 lines
277 B
C#

using Robust.Shared.Serialization;
namespace Content.Shared.Mind;
[Serializable, NetSerializable]
public enum ToggleableGhostRoleVisuals : byte
{
Status
}
[Serializable, NetSerializable]
public enum ToggleableGhostRoleStatus : byte
{
Off,
Searching,
On
}