mirror of https://github.com/axmolengine/axmol.git
17 lines
387 B
Plaintext
17 lines
387 B
Plaintext
|
|
|
|
// struct sImageTGA;
|
|
|
|
class CCTileMapAtlas : public CCAtlasNode
|
|
{
|
|
// struct sImageTGA* getTGAInfo();
|
|
// void setTGAInfo(struct sImageTGA* val);
|
|
|
|
void setTile(ccColor3B tile, ccGridSize position);
|
|
void releaseMap();
|
|
|
|
ccColor3B tileAt(const ccGridSize & pos);
|
|
|
|
static CCTileMapAtlas * create(const char *tile, const char *mapFile, int tileWidth, int tileHeight);
|
|
};
|