1234567
for (auto it = tiles.begin(); it != tiles.end(); it++) { auto tile = **it; Window.draw(tile); }
1234
for (int x = 0; x < tiles.size(); x++) { Window.draw(*tiles[x]); }
std::vector<Tile*> tiles;