CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
hrydgard

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: hrydgard/ppsspp
Path: blob/master/ios/AppDelegate.h
Views: 1401
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