mirror of https://github.com/axmolengine/axmol.git
20 lines
325 B
Objective-C
20 lines
325 B
Objective-C
//
|
|
// iphoneAppDelegate.h
|
|
// iphone
|
|
//
|
|
// Created by Walzer on 10-11-16.
|
|
// Copyright 2010 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@class RootViewController;
|
|
|
|
@interface AppController : NSObject <UIApplicationDelegate> {
|
|
UIWindow *window;
|
|
RootViewController *viewController;
|
|
}
|
|
|
|
@end
|
|
|