Hello.
I have a little problem regarding vectors.
I have a class with a element std::vector<std::vector<Tile> >, the class has a method to populate the vector. The "Tile" has a copy constructor and everything. After the call of the function, it has the needed number of rows, but the "row" vectors are empty. What could cause this? Maybe there is a better way to handle a 2D array of objects?
Thank you!