Example usage for com.badlogic.gdx.backends.iosmoe IOSApplicationConfiguration IOSApplicationConfiguration

List of usage examples for com.badlogic.gdx.backends.iosmoe IOSApplicationConfiguration IOSApplicationConfiguration

Introduction

In this page you can find the example usage for com.badlogic.gdx.backends.iosmoe IOSApplicationConfiguration IOSApplicationConfiguration.

Prototype

IOSApplicationConfiguration

Source Link

Usage

From source file:com.badlogic.gdx.pay.tests.IOSMoeLauncher.java

License:Apache License

@Override
protected IOSApplication createApplication() {
    IOSApplicationConfiguration config = new IOSApplicationConfiguration();
    config.orientationLandscape = true;//from  w  ww  .  ja v a2 s. c om
    config.orientationPortrait = false;
    config.useAccelerometer = false;
    config.allowIpod = true;
    return new IOSApplication(new PayTest(), config);
}