Beispiel #1
0
 public PassiveSkill GetPassiveSkillById(string id) => EntriesList.FirstOrDefault(x => x.Id == id);
Beispiel #2
0
 public PassiveSkill GetPassiveSkillById(string id)
 {
     return(EntriesList.FirstOrDefault(x => x.Id == id));
 }
Beispiel #3
0
 public LabyrinthTrial GetLabyrinthTrialById(int index)
 {
     return(EntriesList.FirstOrDefault(x => x.Id == index));
 }
Beispiel #4
0
 public LabyrinthTrial GetLabyrinthTrialByArea(WorldArea area)
 {
     return(EntriesList.FirstOrDefault(x => x.Area == area));
 }
Beispiel #5
0
 public LabyrinthTrial GetLabyrinthTrialByAreaId(string id)
 {
     return(EntriesList.FirstOrDefault(x => x.Area.Id == id));
 }