Exemple #1
0
		public static void SetDefaultCategoryCooldown(AISpellCategory cat, int min, int max)
		{
			DefaultCooldownsByCategory[(int)cat] = new CooldownRange(min, max);
		}
Exemple #2
0
		public static CooldownRange GetDefaultCategoryCooldown(AISpellCategory cat)
		{
			return DefaultCooldownsByCategory[(int)cat];
		}