Back to project page X3n0break.
The source code is released under:
GNU General Public License
If you think the Android project X3n0break listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.x3n0m0rph59.breakout.desktop; // ww w. j a va 2s .c o m import com.badlogic.gdx.backends.lwjgl.LwjglApplication; import com.badlogic.gdx.backends.lwjgl.LwjglApplicationConfiguration; import org.x3n0m0rph59.breakout.App; public class DesktopLauncher { public static void main (String[] arg) { LwjglApplicationConfiguration config = new LwjglApplicationConfiguration(); config.width = 1920; config.height = 1080; config.fullscreen = true; // DEBUG // config.width = 800; // config.height = 600; // config.fullscreen = false; config.vSyncEnabled = true; // config.useGL30 = true; new LwjglApplication(new App(), config); } }