mirror of https://github.com/axmolengine/axmol.git
21 lines
506 B
C
21 lines
506 B
C
|
//
|
||
|
// AssetsManagerTestAppController.h
|
||
|
// AssetsManagerTest
|
||
|
//
|
||
|
// Created by minggo on 2/5/13.
|
||
|
// Copyright __MyCompanyName__ 2013. All rights reserved.
|
||
|
//
|
||
|
|
||
|
@class RootViewController;
|
||
|
|
||
|
@interface AppController : NSObject <UIAccelerometerDelegate, UIAlertViewDelegate, UITextFieldDelegate,UIApplicationDelegate> {
|
||
|
UIWindow *window;
|
||
|
RootViewController *viewController;
|
||
|
}
|
||
|
|
||
|
@property (nonatomic, retain) UIWindow *window;
|
||
|
@property (nonatomic, retain) RootViewController *viewController;
|
||
|
|
||
|
@end
|
||
|
|