mirror of https://github.com/axmolengine/axmol.git
18 lines
378 B
Objective-C
18 lines
378 B
Objective-C
//
|
|
// testjsAppController.h
|
|
// testjs
|
|
//
|
|
// Created by Rolando Abarca on 3/19/12.
|
|
// Copyright __MyCompanyName__ 2012. All rights reserved.
|
|
//
|
|
|
|
@class RootViewController;
|
|
|
|
@interface AppController : NSObject <UIAccelerometerDelegate, UIAlertViewDelegate, UITextFieldDelegate,UIApplicationDelegate> {
|
|
UIWindow *window;
|
|
RootViewController *viewController;
|
|
}
|
|
|
|
@end
|
|
|