Add new font

This commit is contained in:
2020-01-31 20:27:53 +04:00
parent 26049488ae
commit 06d6a9630c
4 changed files with 108 additions and 5 deletions

View File

@ -8,9 +8,10 @@ public class DesktopLauncher {
public static void main (String[] arg) {
LwjglApplicationConfiguration config = new LwjglApplicationConfiguration();
config.title = "Asteroids";
config.resizable = false;
config.resizable = true;
// config.fullscreen = false;
config.width = 800;
config.height = 600;
config.height = 400;
new LwjglApplication(new Asteroids(), config);
}
}