NAME IT
This commit is contained in:
parent
038b07511b
commit
12ae0c2c67
1 changed files with 1 additions and 4 deletions
|
@ -1,19 +1,16 @@
|
||||||
package com.monjaro.gamejam;
|
package com.monjaro.gamejam;
|
||||||
|
|
||||||
import com.badlogic.gdx.Gdx;
|
|
||||||
import com.badlogic.gdx.backends.lwjgl3.Lwjgl3Application;
|
import com.badlogic.gdx.backends.lwjgl3.Lwjgl3Application;
|
||||||
import com.badlogic.gdx.backends.lwjgl3.Lwjgl3ApplicationConfiguration;
|
import com.badlogic.gdx.backends.lwjgl3.Lwjgl3ApplicationConfiguration;
|
||||||
import com.monjaro.gamejam.main.Game;
|
import com.monjaro.gamejam.main.Game;
|
||||||
|
|
||||||
import static com.badlogic.gdx.graphics.GL20.*;
|
|
||||||
|
|
||||||
// Please note that on macOS your application needs to be started with the -XstartOnFirstThread JVM argument
|
// Please note that on macOS your application needs to be started with the -XstartOnFirstThread JVM argument
|
||||||
public class DesktopLauncher {
|
public class DesktopLauncher {
|
||||||
|
|
||||||
public static void main (String[] arg) {
|
public static void main (String[] arg) {
|
||||||
Lwjgl3ApplicationConfiguration config = new Lwjgl3ApplicationConfiguration();
|
Lwjgl3ApplicationConfiguration config = new Lwjgl3ApplicationConfiguration();
|
||||||
config.setForegroundFPS(60);
|
config.setForegroundFPS(60);
|
||||||
config.setTitle("GameJam");
|
config.setTitle("Pip Poppin'");
|
||||||
config.setWindowedMode(480, 800);
|
config.setWindowedMode(480, 800);
|
||||||
config.setResizable(false);
|
config.setResizable(false);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue