Hi I was creating a class to initalize a series of blocks like in a break out game. I created a pointer as a private member and then used this code to initalize it.

Code:
blockPointer = new Block[3][6];
Then Visual C++ started generating errors like. Can't convert Block * to Block * [3]....

I thought you could create pointer to arrays like that. Is there something I am neglecting??