mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 05:19:56 +00:00
18 lines
411 B
Objective-C
18 lines
411 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 (strong, nonatomic) id<PPSSPPViewController> viewController;
|
|
|
|
- (void)restart:(const char *)args;
|
|
- (BOOL)launchPPSSPP:(int)argc argv:(char**)argv;
|
|
|
|
@end
|