mirror of https://github.com/axmolengine/axmol.git
33 lines
395 B
C++
33 lines
395 B
C++
#include "base/Config.h"
|
|
#if (AX_TARGET_PLATFORM == AX_PLATFORM_ANDROID || AX_TARGET_PLATFORM == AX_PLATFORM_IOS)
|
|
#ifndef __ax_controller_h__
|
|
#define __ax_controller_h__
|
|
|
|
#include "tolua++.h"
|
|
|
|
int register_all_ax_controller(lua_State* tolua_S);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // __ax_controller_h__
|
|
#endif //#if (AX_TARGET_PLATFORM == AX_PLATFORM_ANDROID || AX_TARGET_PLATFORM == AX_PLATFORM_IOS)
|