コード例 #1
0
ファイル: Core.cs プロジェクト: dosimont/sc2_matchmaker
 public void computeMatchmaking(List<Team> team)
 {
     Matchmaker matchMaker = new Matchmaker(this);
     CurrentTeams = team;
     matchMaker.computeMatch(team);
     CurrentScore = matchMaker.Score;
 }
コード例 #2
0
ファイル: Core.cs プロジェクト: dosimont/sc2_matchmaker
 public void computeMatchmaking(Constants.MatchPolicy policy)
 {
     Matchmaker matchMaker = new Matchmaker(this);
     checkMatch();
     CurrentTeams = matchMaker.computeMatch(policy);
     CurrentScore = matchMaker.Score;
 }