Added crosshair and wrote the coords of the mouse on the screen

This commit is contained in:
2020-03-29 04:32:00 -06:00
parent 26e4a8ab42
commit 47badea54b
15 changed files with 452 additions and 52 deletions

View File

@@ -8,6 +8,9 @@ public class DesktopLauncher {
public static void main (String[] arg) {
LwjglApplicationConfiguration config = new LwjglApplicationConfiguration();
config.foregroundFPS = 60;
config.resizable = true;
config.width = 1280;
config.height = 720;
new LwjglApplication(new Main(), config);
}
}