mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-27 15:30:35 +00: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
|