Example #1
0
 public void SortObjectives()
 {
     if (Objectives.Any())
     {
         Objectives.Sort((x, y) => y.GetPriority().CompareTo(x.GetPriority()));
     }
     CurrentObjective?.SortSubObjectives();
 }