[9995] Move GridMap class (and related structs/enums) to separate cpp/h.

Also rename some structs/enums and fix some code style.
This commit is contained in:
XTZGZoReX 2010-05-28 13:33:04 +02:00
parent ee31661bb8
commit 28c3de5093
13 changed files with 838 additions and 720 deletions

View file

@ -283,7 +283,7 @@ bool MapManager::ExistMapAndVMap(uint32 mapid, float x,float y)
int gx=63-p.x_coord;
int gy=63-p.y_coord;
return Map::ExistMap(mapid,gx,gy) && Map::ExistVMap(mapid,gx,gy);
return GridMap::ExistMap(mapid,gx,gy) && GridMap::ExistVMap(mapid,gx,gy);
}
bool MapManager::IsValidMAP(uint32 mapid)