Why declare the maze as Field***
?
The C++ alternative is std::vector<std::vector<Field*> > maze;
, and that's what you should use.
Why declare the maze as Field***
?
The C++ alternative is std::vector<std::vector<Field*> > maze;
, and that's what you should use.