Example #1
0
 public GameEdge(int row, int column, GameResult result)
 {
     this.Row    = row;
     this.Column = column;
     this.Result = result;
 }
Example #2
0
 public bool IsComplete(out GameResult gameResult)
 {
     return(IsComplete(_board, out gameResult));
 }
Example #3
0
        public void showGameScore(GameResult rslt)
        {
            textScore1.Text = rslt.Players[0].Score.ToString();

            textScore2.Text = rslt.Players[1].Score.ToString();
        }