mirror of
https://github.com/u0u0/Cocos2d-Lua-Community.git
synced 2026-05-22 21:32:37 +08:00
22 lines
537 B
C++
Executable File
22 lines
537 B
C++
Executable File
#include "base/ccConfig.h"
|
|
|
|
#ifndef __cocos2dx_tmx_h__
|
|
#define __cocos2dx_tmx_h__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
#include "tolua++.h"
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
int lua_register_cocos2dx_TMXObjectGroup(lua_State* tolua_S);
|
|
int lua_register_cocos2dx_TMXLayerInfo(lua_State* tolua_S);
|
|
int lua_register_cocos2dx_TMXTilesetInfo(lua_State* tolua_S);
|
|
int lua_register_cocos2dx_TMXMapInfo(lua_State* tolua_S);
|
|
int lua_register_cocos2dx_TMXLayer(lua_State* tolua_S);
|
|
int lua_register_cocos2dx_TMXTiledMap(lua_State* tolua_S);
|
|
|
|
#endif
|