axmol/tools/tolua++/CCTileMapAtlas.pkg

16 lines
470 B
Plaintext

typedef std::map<std::string, int> StringToIntegerDictionary;
typedef std::pair<std::string, int> StringToIntegerPair;
struct sImageTGA;
class CCTileMapAtlas : public CCAtlasNode
{
struct sImageTGA* getTGAInfo();
void setTGAInfo(struct sImageTGA* val);
void setTile(ccColor3B tile, ccGridSize position);
void releaseMap();
static CCTileMapAtlas * tileMapAtlasWithTileFile(const char *tile, const char *mapFile, int tileWidth, int tileHeight);
};