disabled GUI

This commit is contained in:
Tim Tersch 2022-02-14 08:32:31 +01:00
parent 755f2d5a9d
commit fbfc559a45
1 changed files with 1 additions and 7 deletions

View File

@ -2,19 +2,13 @@ public class Game {
// Instanzvariablen - ersetzen Sie das folgende Beispiel mit Ihren Variablen
WordleServer wordleServer;
User user;
GUI gui;
DatabaseConnector databaseConnector;// Datenbankverbindung aufstellen
private String wordle;
private String[] words;
private int count;
public static void main(String[] args) {
new Game();
}
public Game() {
wordleServer = new WordleServer();
user = new User();
gui = new GUI();
}
}