Files
VOIDRPG/Assets/90 - Scripts/Generic/AI/Schema/SchemaCategory.cs
T
2026-07-09 21:33:33 +02:00

13 lines
633 B
C#

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";
}
}