MaxstARSDK  3.5.0
All Classes Functions Variables
CameraSize.java
1 /*
2  * Copyright 2016 Maxst, Inc. All Rights Reserved.
3  */
4 package com.maxst.ar;
5 
6 class CameraSize {
7 
8  public int width;
9  public int height;
10 
11  CameraSize(int width, int height) {
12  this.width = width;
13  this.height = height;
14  }
15 }