Пример #1
0
        public void computeMatchmaking(List <Team> team)
        {
            Matchmaker matchMaker = new Matchmaker(this);

            CurrentTeams = team;
            matchMaker.computeMatch(team);
            CurrentScore = matchMaker.Score;
        }
Пример #2
0
        public void computeMatchmaking(Constants.MatchPolicy policy)
        {
            Matchmaker matchMaker = new Matchmaker(this);

            checkMatch();
            CurrentTeams = matchMaker.computeMatch(policy);
            CurrentScore = matchMaker.Score;
        }
Пример #3
0
 public void computeMatchmaking(List<Team> team)
 {
     Matchmaker matchMaker = new Matchmaker(this);
     CurrentTeams = team;
     matchMaker.computeMatch(team);
     CurrentScore = matchMaker.Score;
 }
Пример #4
0
 public void computeMatchmaking(Constants.MatchPolicy policy)
 {
     Matchmaker matchMaker = new Matchmaker(this);
     checkMatch();
     CurrentTeams = matchMaker.computeMatch(policy);
     CurrentScore = matchMaker.Score;
 }