Klasse gelöscht
parent
936967e809
commit
f3481c5b96
|
@ -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);
|
||||
});
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue