com.ng.gdxutils.services.OrientationServices Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gdx-utils Show documentation
Show all versions of gdx-utils Show documentation
A java library that used over libGdx game framework.
The newest version!
package com.ng.gdxutils.services;
/**
* (c) 2016 Abhishek Aryan
*
* @author Abhishek Aryan
* @since 24-07-2016
*
*/
public interface OrientationServices extends IServices {
enum Orientation {
FULL_SENSOR(0),
LANDSCAPE(1),
PORTRAIT(2);
public int value;
Orientation(int value){
this.value=value;
}
}
void setOrientation(Orientation orientation);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy