mirror of https://github.com/axmolengine/axmol.git
12 lines
189 B
C
12 lines
189 B
C
|
#import <UIKit/UIKit.h>
|
||
|
|
||
|
@class RootViewController;
|
||
|
|
||
|
@interface AppController : NSObject <UIApplicationDelegate> {
|
||
|
UIWindow *window;
|
||
|
RootViewController *viewController;
|
||
|
}
|
||
|
|
||
|
@end
|
||
|
|