Package org.sfaci.bombermanx

Source Code of org.sfaci.bombermanx.DesktopBombermanX

package org.sfaci.bombermanx;

import static org.sfaci.bombermanx.util.Constants.*;

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

/**
* Clase principal de la versión de escritorio (PC) del juego
* @author Santiago Faci
* @version Agosto 2014
*
*/
public class DesktopBombermanX {

  public static void main(String[] args) {
    LwjglApplicationConfiguration configuration = new LwjglApplicationConfiguration();
    configuration.title = "Bombermanx";

    configuration.width = SCREEN_WIDTH;
    configuration.height = SCREEN_HEIGHT;
    configuration.fullscreen = false;
       
    new LwjglApplication(new Bombermanx(), configuration);
  }
}
TOP

Related Classes of org.sfaci.bombermanx.DesktopBombermanX

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.