added option subwindow

This commit is contained in:
2025-12-08 14:23:39 +01:00
parent fb0273afb0
commit 7ac1207c83
4 changed files with 13 additions and 7 deletions

View File

@@ -13,7 +13,7 @@ public class Boot {
window.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
window.setResizable(false);
window.setTitle("JGame2D");
window.setUndecorated(true);
//window.setUndecorated(true);
GamePanel gamePanel = new GamePanel();
window.add(gamePanel);