mirror of
https://github.com/izzy2lost/ppsspp.git
synced 2026-03-10 12:43:04 -07:00
14 lines
258 B
C
14 lines
258 B
C
|
|
// AppDelegate.h boilerplate
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
|
||
|
|
@class ViewController;
|
||
|
|
|
||
|
|
@interface AppDelegate : UIResponder <UIApplicationDelegate>
|
||
|
|
|
||
|
|
@property (strong, nonatomic) UIWindow *window;
|
||
|
|
|
||
|
|
@property (strong, nonatomic) ViewController *viewController;
|
||
|
|
|
||
|
|
@end
|