struct piece {
piece(){}
piece(int spacs[][3])
{
spaces = spacs;
}
int spaces[][3];
};
/home/myname/Programming/C++/blokus1/game.hpp|11|error: incompatible types in assignment of ‘int (*)[3]’ to ‘int [0][3]'
How can this be fixed?