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

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

Introduction

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

Prototype

public IOSApplication(ApplicationListener listener, IOSApplicationConfiguration config) 

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;/* w  w  w . j a  v a 2s .c  o  m*/
    config.orientationPortrait = false;
    config.useAccelerometer = false;
    config.allowIpod = true;
    return new IOSApplication(new PayTest(), config);
}