Package org.sfaci.jumper2dx

Source Code of org.sfaci.jumper2dx.DesktopJumper2DX

package org.sfaci.jumper2dx;

import com.badlogic.gdx.backends.lwjgl.LwjglApplication;
import com.badlogic.gdx.backends.lwjgl.LwjglApplicationConfiguration;

/**
* Clase lanzadera para la versión PC Desktop
* @author Santiago Faci
* @version Agosto 2014
*/
public class DesktopJumper2DX {

  public static void main(String[] args) {
    LwjglApplicationConfiguration configuration = new LwjglApplicationConfiguration();
    configuration.title = "Jumper2DX";
    configuration.width = 1024;
    configuration.height = 600;
        configuration.fullscreen = false;
       
    new LwjglApplication(new Jumper2DX(), configuration);
  }
}
TOP

Related Classes of org.sfaci.jumper2dx.DesktopJumper2DX

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.