mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 05:19:56 +00:00
25 lines
416 B
C
25 lines
416 B
C
|
//
|
||
|
// DisplayManager.h
|
||
|
// native
|
||
|
//
|
||
|
// Created by xieyi on 2019/6/9.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
#import <UIKit/UIKit.h>
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@interface DisplayManager : NSObject
|
||
|
|
||
|
- (void)setupDisplayListener;
|
||
|
- (void)updateResolution:(UIScreen *)screen;
|
||
|
|
||
|
@property (nonatomic, strong) UIScreen *mainScreen;
|
||
|
|
||
|
@property (class, readonly, strong) DisplayManager *shared;
|
||
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|