mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-11 01:25:07 +02:00
2f06100b43
Fixes #20884
17 lines
398 B
Objective-C
17 lines
398 B
Objective-C
// AppDelegate.h boilerplate
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@protocol PPSSPPViewController;
|
|
|
|
@interface AppDelegate : UIResponder <UIApplicationDelegate>
|
|
|
|
@property (strong, nonatomic) UIWindow *window;
|
|
@property (strong, nonatomic) UIScreen *screen;
|
|
@property (nonatomic, strong) NSDictionary *launchOptions;
|
|
|
|
- (void)restart:(const char *)args;
|
|
- (BOOL)launchPPSSPP:(int)argc argv:(char**)argv;
|
|
|
|
@end
|