Initial commit

This commit is contained in:
2025-11-26 20:01:02 +01:00
commit fb9ccc1d35
4 changed files with 69 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
package de.mp.jgame2d.core;
import javax.swing.*;
public class Boot {
public static void main() {
JFrame window = new JFrame();
window.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
window.setResizable(false);
window.setTitle("JGame2D");
window.setLocationRelativeTo(null);
window.setVisible(true);
}
}