Maxst AR SDK 4.0.0  4.0.0
MasMaxstAR.h
1 //
2 // MTMaxstAR.h
3 // MTMaxstAR
4 //
5 // Created by Kimseunglee on 2017. 12. 7..
6 // Copyright © 2017년 Maxst. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
11 
12 @interface MasMaxstAR : NSObject
13 
14 typedef NS_ENUM(int, MasScreenOrientation) {
15  UNKNOWN = 0,
16  PORTRAIT = 1,
17  PORTRAIT_UP = 1,
18  PORTRAIT_DOWN = 2,
19  LANDSCAPE = 3,
20  LANDSCAPE_LEFT = 3,
21  LANDSCAPE_RIGHT = 4
22 };
23 
28 + (void) init:(NSString*) appKey;
29 
33 + (void) deinit;
34 
38 + (bool) isInitialized;
39 
45 + (void) onSurfaceChanged:(int)viewWidth height:(int)viewHeight;
46 
52 + (void) setScreenOrientation:(MasScreenOrientation)orientation;
53 @end
Definition: MasMaxstAR.h:12