mirror of https://github.com/axmolengine/axmol.git
13 lines
214 B
C
13 lines
214 B
C
|
#import <UIKit/UIKit.h>
|
||
|
|
||
|
@class RootViewController;
|
||
|
|
||
|
@interface AppController : NSObject <UIApplicationDelegate> {
|
||
|
UIWindow *window;
|
||
|
}
|
||
|
|
||
|
@property(nonatomic, readonly) RootViewController* viewController;
|
||
|
|
||
|
@end
|
||
|
|