mirror of
https://github.com/FossifyOrg/Camera.git
synced 2026-04-24 00:48:54 -04:00
8 lines
226 B
Java
8 lines
226 B
Java
package com.simplemobiletools.camera;
|
|
|
|
public class Constants {
|
|
public static final int ORIENT_PORTRAIT = 0;
|
|
public static final int ORIENT_LANDSCAPE_LEFT = 1;
|
|
public static final int ORIENT_LANDSCAPE_RIGHT = 2;
|
|
}
|