1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-01-12 02:28:11 +02:00
vcmi/mapHandler.h

11 lines
330 B
C
Raw Normal View History

2007-06-06 19:12:12 +03:00
#include "CAmbarCendamo.h"
class mapHandler
{
public:
CAmbarCendamo * reader;
SDL_Surface *** terrainBitmap;
SDL_Surface *** undTerrainBitmap; // used only if there is underground level
SDL_Surface * terrainRect(int x, int y, int dx, int dy, int level=0);
2007-06-06 19:12:12 +03:00
SDL_Surface mirrorImage(SDL_Surface *src);
void init();
};