Simple Screens and so

This commit is contained in:
2014-08-10 00:42:19 +02:00
parent 76cc7e8e47
commit bc201739b8
5 changed files with 26 additions and 13 deletions

View File

@@ -7,6 +7,11 @@ import de.samdev.colorrunner.CRGame;
public class DesktopLauncher {
public static void main (String[] arg) {
LwjglApplicationConfiguration config = new LwjglApplicationConfiguration();
config.title = "ColorRunner";
config.width = 967;
config.height = 544;
new LwjglApplication(new CRGame(), config);
}
}