mirror of https://github.com/axmolengine/axmol.git
Merge pull request #9287 from CocosRobot/update_lua_bindings_1417095414
[AUTO]: updating luabinding automatically
This commit is contained in:
commit
95a99b7772
|
@ -1246,9 +1246,4 @@
|
||||||
-- @field [parent=#cc] Component#Component Component preloaded module
|
-- @field [parent=#cc] Component#Component Component preloaded module
|
||||||
|
|
||||||
|
|
||||||
--------------------------------------------------------
|
|
||||||
-- the cc CSLoader
|
|
||||||
-- @field [parent=#cc] CSLoader#CSLoader CSLoader preloaded module
|
|
||||||
|
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
--------------------------------
|
||||||
|
-- @module cc
|
||||||
|
|
||||||
|
--------------------------------------------------------
|
||||||
|
-- the cc CSLoader
|
||||||
|
-- @field [parent=#cc] CSLoader#CSLoader CSLoader preloaded module
|
||||||
|
|
||||||
|
|
||||||
|
return nil
|
File diff suppressed because it is too large
Load Diff
|
@ -1601,30 +1601,6 @@ int register_all_cocos2dx(lua_State* tolua_S);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,39 @@
|
||||||
|
#include "base/ccConfig.h"
|
||||||
|
#ifndef __cocos2dx_csloader_h__
|
||||||
|
#define __cocos2dx_csloader_h__
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
#include "tolua++.h"
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
int register_all_cocos2dx_csloader(lua_State* tolua_S);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#endif // __cocos2dx_csloader_h__
|
Loading…
Reference in New Issue