source dir

added package declaration

removed package declaration

ist doch nicht nötig
This commit is contained in:
Asecave
2022-02-11 18:56:12 +01:00
parent dd3713bda1
commit 65a8467b89
10 changed files with 39 additions and 43 deletions

20
src/Game.java Normal file
View File

@@ -0,0 +1,20 @@
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();
}
}