コード例 #1
0
ファイル: AISpellSettings.cs プロジェクト: MeaNone/WCell
		public static void SetDefaultCategoryCooldown(AISpellCategory cat, int min, int max)
		{
			DefaultCooldownsByCategory[(int)cat] = new CooldownRange(min, max);
		}
コード例 #2
0
ファイル: AISpellSettings.cs プロジェクト: MeaNone/WCell
		public static CooldownRange GetDefaultCategoryCooldown(AISpellCategory cat)
		{
			return DefaultCooldownsByCategory[(int)cat];
		}