Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
hrydgard
GitHub Repository: hrydgard/ppsspp
Path: blob/master/ios/AppDelegate.h
3185 views
1
// AppDelegate.h boilerplate
2
3
#import <UIKit/UIKit.h>
4
5
@protocol PPSSPPViewController;
6
7
@interface AppDelegate : UIResponder <UIApplicationDelegate>
8
9
@property (strong, nonatomic) UIWindow *window;
10
@property (strong, nonatomic) UIScreen *screen;
11
12
@property (strong, nonatomic) id<PPSSPPViewController> viewController;
13
14
- (void)restart:(const char *)args;
15
- (BOOL)launchPPSSPP:(int)argc argv:(char**)argv;
16
17
@end
18
19