public override int?GetMaximumScore(Objective Objective, Army ForArmy, Match Match)
 {
     if (Objective == this)
     {
         Objective = Numerator;
     }
     return(Numerator.GetMaximumScore(Objective, ForArmy, Match));
 }
 public override int?GetMaximumScore(Objective Objective, Army ForArmy, Match Match)
 {
     if (Objective == this)
     {
         return(1);
     }
     return(Metric.GetMaximumScore(Objective, ForArmy, Match));
 }