You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
551 B
17 lines
551 B
package com.throwgame.main.desktop;
|
|
|
|
import com.badlogic.gdx.backends.lwjgl.LwjglApplication;
|
|
import com.badlogic.gdx.backends.lwjgl.LwjglApplicationConfiguration;
|
|
import com.throwgame.main.Main;
|
|
import controller.Controller;
|
|
|
|
public class DesktopLauncher {
|
|
public static void main (String[] arg) {
|
|
LwjglApplicationConfiguration config = new LwjglApplicationConfiguration();
|
|
//config.fullscreen = true;
|
|
config.height = 720;
|
|
config.width = 1280;
|
|
new LwjglApplication(new Controller(), config);
|
|
}
|
|
}
|