namespace VOID.Generic.AI.Schema { public static class SchemaCategory { private const string VoidCategory = "VOID RPG / "; public const string CombatAnyUnit = VoidCategory + "Combat only / Any Unit"; public const string RealtimeAnyUnit = VoidCategory + "Realtime only / Any Unit"; public const string CombatThisUnit = VoidCategory + "Combat only / This Unit"; public const string RealtimeThisUnit = VoidCategory + "Realtime only / This Unit"; public const string AnyUnit = VoidCategory + "Any Unit"; public const string ThisUnit = VoidCategory + "This Unit"; } }