Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
hrydgard
GitHub Repository: hrydgard/ppsspp
Path: blob/master/ios/DisplayManager.h
3185 views
1
//
2
// DisplayManager.h
3
// native
4
//
5
// Created by xieyi on 2019/6/9.
6
//
7
8
#import <Foundation/Foundation.h>
9
#import <UIKit/UIKit.h>
10
11
NS_ASSUME_NONNULL_BEGIN
12
13
@interface DisplayManager : NSObject
14
15
- (void)setupDisplayListener;
16
- (void)updateResolution:(UIScreen *)screen;
17
18
@property (nonatomic, strong) UIScreen *mainScreen;
19
20
@property (class, readonly, strong) DisplayManager *shared;
21
22
@end
23
24
NS_ASSUME_NONNULL_END
25
26