2013-08-22 10:16:57 +08:00
|
|
|
#ifndef COCOS2DX_SCRIPT_LUA_COCOS2DX_SUPPORT_LUA_COCOS2DX_EXTENSION_MANUAL_H
|
|
|
|
#define COCOS2DX_SCRIPT_LUA_COCOS2DX_SUPPORT_LUA_COCOS2DX_EXTENSION_MANUAL_H
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
#include "tolua++.h"
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-09-04 22:17:26 +08:00
|
|
|
#include "LuaScriptHandlerMgr.h"
|
|
|
|
|
2013-08-22 10:16:57 +08:00
|
|
|
TOLUA_API int register_all_cocos2dx_extension_manual(lua_State* tolua_S);
|
|
|
|
TOLUA_API int register_cocos2dx_extension_CCBProxy(lua_State* tolua_S);
|
|
|
|
|
2013-10-22 16:14:49 +08:00
|
|
|
struct LuaAssetsManagerEventData
|
|
|
|
{
|
|
|
|
int value;
|
2013-12-26 19:43:49 +08:00
|
|
|
|
|
|
|
LuaAssetsManagerEventData(int _value = 0):value(_value)
|
2013-10-22 16:14:49 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2013-08-22 10:16:57 +08:00
|
|
|
#endif // #ifndef COCOS2DX_SCRIPT_LUA_COCOS2DX_SUPPORT_LUA_COCOS2DX_EXTENSION_MANUAL_H
|