mirror of https://github.com/axmolengine/axmol.git
18 lines
430 B
Objective-C
18 lines
430 B
Objective-C
//
|
|
// ___PROJECTNAMEASIDENTIFIER___AppController.h
|
|
// ___PROJECTNAME___
|
|
//
|
|
// Created by ___FULLUSERNAME___ on ___DATE___.
|
|
// Copyright ___ORGANIZATIONNAME___ ___YEAR___. All rights reserved.
|
|
//
|
|
|
|
@class RootViewController;
|
|
|
|
@interface AppController : NSObject <UIAccelerometerDelegate, UIAlertViewDelegate, UITextFieldDelegate,UIApplicationDelegate> {
|
|
UIWindow *window;
|
|
RootViewController *viewController;
|
|
}
|
|
|
|
@end
|
|
|