mirror of https://github.com/axmolengine/axmol.git
21 lines
506 B
Objective-C
21 lines
506 B
Objective-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
|
|
|