예제 #1
0
 public TournMatch()
 {
     this._players = new TournPlayerArray();
     this._winner  = Player.BYE_ID;
     this._status  = TournMatchResult.Incomplete;
     this._round   = 0;
     this._table   = 0;
 }
예제 #2
0
        public void Copy(ITournMatch match)
        {
            TournPlayerArray tournPlayerArray = new TournPlayerArray();

            tournPlayerArray.Append(match.Players);
            this._players = new TournPlayerArray();
            this._players.Append((ITournPlayerArray)tournPlayerArray);
            this._winner = match.Winner;
            this._status = match.Status;
            this._round  = match.Round;
            this._table  = match.Table;
        }