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