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/DisplayManager.h
Views: 1401
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