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