Package de.zelosfan.timedstrategy

Source Code of de.zelosfan.timedstrategy.DesktopStarter

package de.zelosfan.timedstrategy;

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

/**
* User: Simon "Zelosfan" Herfert
* Date: 24.08.13
* Time: 03:35
*/
public class DesktopStarter {
    public static void main(String[] args) {
        LwjglApplicationConfiguration cfg = new LwjglApplicationConfiguration();
        cfg.title = "TimedStrategy";
        cfg.useGL20 = true;
        cfg.width = 1024;
        cfg.height = 768;
        cfg.resizable = false;
        new LwjglApplication(new Main(), cfg);
    }
}
TOP

Related Classes of de.zelosfan.timedstrategy.DesktopStarter

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.