This commit is contained in:
Daveo 2000-11-03 22:40:41 +00:00
parent 46791b36f4
commit 84eb6ded52
15 changed files with 243 additions and 108 deletions

View file

@ -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;