blob: c60f6f1d682b118bf10db3bda313386573552da2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// SDLScreenParams.h
//
#import "SDLRPCMessage.h"
@class SDLImageResolution;
@class SDLTouchEventCapabilities;
@interface SDLScreenParams : SDLRPCStruct {
}
- (instancetype)init;
- (instancetype)initWithDictionary:(NSMutableDictionary *)dict;
@property (strong) SDLImageResolution *resolution;
@property (strong) SDLTouchEventCapabilities *touchEventAvailable;
@end
|