forked from IF-LK-2020/wordle
source dir
added package declaration removed package declaration ist doch nicht nötig
This commit is contained in:
20
src/Game.java
Normal file
20
src/Game.java
Normal 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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user