12 vector< vector<int> > map;
18 void loadMap(
string filename);
20 int getX()
const {
return startX; }
22 int getY()
const {
return startY; }
24 vector< vector<int> >
getMap()
const {
return map; }
vector< vector< int > > getMap() const
Get the vector of integers found in the file.
int getY() const
Get the start y coordinate found in the file.
This class takes in a file and loads it in for the map.
int getX() const
Get the start x coordinate found in the file.