Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
hrydgard
GitHub Repository: hrydgard/ppsspp
Path: blob/master/ios/AppDelegate.h
5664 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
@property (nonatomic, strong) NSDictionary *launchOptions;
12
13
- (BOOL)launchPPSSPP:(int)argc argv:(char**)argv;
14
15
@end
16
17