mirror of
https://github.com/wu736139669/SmallGame_Cocos2dx.git
synced 2026-08-05 06:23:09 +00:00
21 lines
468 B
Objective-C
21 lines
468 B
Objective-C
#import <UIKit/UIKit.h>
|
|
#if CC_TARGET_PLATFORM == CC_PLATFORM_IOS
|
|
|
|
#include "QQInterface.h"
|
|
#include "SinaInterface_Objc.h"
|
|
#include "WeiboSDK.h"
|
|
#import <TencentOpenAPI/TencentOAuth.h>
|
|
#import "TencentOpenAPI/QQApiInterface.h"
|
|
#elif CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID
|
|
|
|
#endif
|
|
@class RootViewController;
|
|
|
|
@interface AppController : NSObject <UIApplicationDelegate> {
|
|
UIWindow *window;
|
|
RootViewController *viewController;
|
|
}
|
|
|
|
@end
|
|
|