blob: 230dc5f425775d095b6bfbbbbaa99a45c672db3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package kz.ilotterytea.maxon;
import com.badlogic.gdx.backends.lwjgl3.Lwjgl3Application;
import com.badlogic.gdx.backends.lwjgl3.Lwjgl3ApplicationConfiguration;
// Please note that on macOS your application needs to be started with the -XstartOnFirstThread JVM argument
public class DesktopLauncher {
public static void main (String[] arg) {
Lwjgl3ApplicationConfiguration config = new Lwjgl3ApplicationConfiguration();
config.setForegroundFPS(60);
config.setTitle(MaxonConstants.GAME_NAME);
config.setWindowIcon("icon_chest.png");
new Lwjgl3Application(MaxonGame.getInstance(), config);
}
}
|