package org.andengine.engine.options;
/**
* (c) Zynga 2012
*
* @author Nicolas Gramlich <ngramlich@zynga.com>
* @since 16:48:03 - 04.04.2012
*/
public enum ScreenOrientation {
// ===========================================================
// Elements
// ===========================================================
/** The app will be fixed in its default Landscape mode. */
LANDSCAPE_FIXED,
/** The app will automatically rotate between the Landscape modes, depending on the orientation of the device. */
LANDSCAPE_SENSOR,
/** The app will be fixed in its default Portrait mode. */
PORTRAIT_FIXED,
/** The app will automatically rotate between the Portrait modes, depending on the orientation of the device. */
PORTRAIT_SENSOR;
// ===========================================================
// Constants
// ===========================================================
// ===========================================================
// Fields
// ===========================================================
// ===========================================================
// Constructors
// ===========================================================
// ===========================================================
// Getter & Setter
// ===========================================================
// ===========================================================
// Methods for/from SuperClass/Interfaces
// ===========================================================
// ===========================================================
// Methods
// ===========================================================
// ===========================================================
// Inner and Anonymous Classes
// ===========================================================
}