I'm making a game and I need a 2-D map allocated on the heap... something like this..
Code:
int * pInt = new int[2][2];
but when i try to compile, i get an error that says cannot assign from int[*][2]
any ideas?