mirror of
https://github.com/wu736139669/OzgGameRPG.git
synced 2026-08-05 06:24:38 +00:00
12 lines
189 B
Objective-C
12 lines
189 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
@class RootViewController;
|
|
|
|
@interface AppController : NSObject <UIApplicationDelegate> {
|
|
UIWindow *window;
|
|
RootViewController *viewController;
|
|
}
|
|
|
|
@end
|
|
|