summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2024-10-06 00:17:20 +0500
committerilotterytea <iltsu@alright.party>2024-10-06 00:17:20 +0500
commit2eee5c2cc487d0657fadef78d3fcb547885619e3 (patch)
treed055a84923f27576f5557df0fa0a5b0f3b4158c8 /desktop
parent2974355d1fe5547ad79e775b0e2570005e13550e (diff)
upd: window limits
Diffstat (limited to 'desktop')
-rw-r--r--desktop/src/kz/ilotterytea/maxon/DesktopLauncher.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/desktop/src/kz/ilotterytea/maxon/DesktopLauncher.java b/desktop/src/kz/ilotterytea/maxon/DesktopLauncher.java
index 230dc5f..f2244af 100644
--- a/desktop/src/kz/ilotterytea/maxon/DesktopLauncher.java
+++ b/desktop/src/kz/ilotterytea/maxon/DesktopLauncher.java
@@ -10,6 +10,7 @@ public class DesktopLauncher {
config.setForegroundFPS(60);
config.setTitle(MaxonConstants.GAME_NAME);
config.setWindowIcon("icon_chest.png");
+ config.setWindowSizeLimits(800, 600, 80000, 60000);
new Lwjgl3Application(MaxonGame.getInstance(), config);
}