Example #1
0
 public void computeMatchmaking(List<Team> team)
 {
     Matchmaker matchMaker = new Matchmaker(this);
     CurrentTeams = team;
     matchMaker.computeMatch(team);
     CurrentScore = matchMaker.Score;
 }
Example #2
0
 public void computeMatchmaking(Constants.MatchPolicy policy)
 {
     Matchmaker matchMaker = new Matchmaker(this);
     checkMatch();
     CurrentTeams = matchMaker.computeMatch(policy);
     CurrentScore = matchMaker.Score;
 }