mirror of https://github.com/axmolengine/axmol.git
21 lines
558 B
Objective-C
21 lines
558 B
Objective-C
#ifndef COCOS2DX_SAMPLES_TESTLUA_PROJ_IOS_LUAOBJECTCBRIDGETEST_H
|
|
#define COCOS2DX_SAMPLES_TESTLUA_PROJ_IOS_LUAOBJECTCBRIDGETEST_H
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface LuaObjectCBridgeTest : NSObject {
|
|
int _scriptHandler;
|
|
}
|
|
+ (LuaObjectCBridgeTest*) getInstance;
|
|
+ (void) destroyInstance;
|
|
|
|
+ (void) registerScriptHandler:(NSDictionary *)dict;
|
|
+ (void) unregisterScriptHandler;
|
|
|
|
+ (int) addTwoNumbers:(NSDictionary *)dict;
|
|
+ (void) callbackScriptHandler;
|
|
|
|
- (void) init;
|
|
@end
|
|
|
|
#endif // COCOS2DX_SAMPLES_TESTLUA_PROJ_IOS_LUAOBJECTCBRIDGETEST_H
|