Exemplo n.º 1
0
        protected ICell CellAtPos(Position pos)
        {
            ICell ans;

            try
            {
                ans = State[pos.to_board_index(DefaultBoardSize)];
            }
            catch
            {
                return(null);
            }

            return(ans);
        }