Files
ppsspp/ios/AppDelegate.h
T
2025-10-17 15:58:23 +02:00

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