示例#1
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="gridCells">9x9 array of Cells, the game board cells</param>
 public GameLogic()
 {
     Model = new BoardModel(ColumnLength, RowLength);
 }
示例#2
0
        /// <summary>
        /// Constructor
        /// </summary>
        /// <param name="gridCells">9x9 array of Cells, the game board cells</param>
        public GameLogic()
        {
			Model = new BoardModel(ColumnLength, RowLength);
        }