public static T[] Load <T>()
     where T : MountTemplate, new()
 {
     return(GeneratorUtility.Load <T>("MountsConfig", "Mount"));
 }
Exemple #2
0
 public static T Load <T>()
     where T : BattleParamTemplate, new ()
 {
     return(GeneratorUtility.Load <T>("BattleParamTemplate"));
 }
Exemple #3
0
 public static T[] Load <T>()
     where T : DailyTasksTemplate, new ()
 {
     return(GeneratorUtility.Load <T>("DailyTasksTemplate", "DailyTask"));
 }
 public static T Load <T>()
     where T : GlobalTemplate, new()
 {
     return(GeneratorUtility.Load <T>("GlobalConfig"));
 }
 public static T[] Load <T>()
     where T : BuffsTemplate, new ()
 {
     return(GeneratorUtility.Load <T>("BuffsTemplate", "Buff"));
 }
 public static T[] Load <T>()
     where T : HeroTemplate, new()
 {
     return(GeneratorUtility.Load <T>("HerosConfig", "Hero"));
 }