Klasse gelöscht

currentStatus
Vickvick2002 2025-01-03 13:40:15 +01:00
parent 936967e809
commit f3481c5b96
1 changed files with 0 additions and 21 deletions

View File

@ -1,21 +0,0 @@
package PR2.HitoriSpiel.GUI;
import javax.swing.*;
public class HitoriApp {
public void start() {
SwingUtilities.invokeLater(() -> {
// Hauptfenster erstellen
JFrame frame = new JFrame("Hitori - Das Spiel");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(400, 400);
// Startmenü hinzufügen
StartMenu startMenu = new StartMenu(frame);
frame.add(startMenu);
frame.setVisible(true);
frame.setLocationRelativeTo(null);
});
}
}