This commit is contained in:
parent
46791b36f4
commit
84eb6ded52
15 changed files with 243 additions and 108 deletions
|
@ -21,12 +21,14 @@ public:
|
|||
CMap(){};
|
||||
~CMap(){};
|
||||
|
||||
int GetWidth();
|
||||
int GetHeight();
|
||||
int GetWidth();
|
||||
int GetHeight();
|
||||
|
||||
void SetSize(int Width,int Height);
|
||||
void SetWidth(int Width);
|
||||
void SetHeight(int Height);
|
||||
void SetSize(int Width,int Height);
|
||||
void SetWidth(int Width);
|
||||
void SetHeight(int Height);
|
||||
|
||||
sMapElem &GetTile(int X,int Y) {return(Map[X][Y]);}
|
||||
|
||||
protected:
|
||||
std::vector< std::vector<sMapElem> > Map;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue