mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-11 01:25:07 +02:00
13 lines
291 B
Objective-C
13 lines
291 B
Objective-C
// SceneDelegate.h
|
|
#import <UIKit/UIKit.h>
|
|
#import "ViewControllerCommon.h"
|
|
|
|
@interface SceneDelegate : UIResponder <UIWindowSceneDelegate>
|
|
|
|
- (void)restart:(const char *)args;
|
|
|
|
@property (strong, nonatomic) UIWindow * window;
|
|
@property (strong, nonatomic) UIWindowScene *windowScene;
|
|
|
|
@end
|