6
2026-01-18 12:53:36 +03: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
}