Game Klasse hinzugefügt

This commit is contained in:
Artem Didytschuk 2022-03-02 09:00:10 +01:00
parent 102d1ba8f1
commit de84402ecd
1 changed files with 25 additions and 0 deletions

25
Game.java Normal file
View File

@ -0,0 +1,25 @@
public class Game {
String randomWord;
String[] guesses;
//TODO:
Game() {
}
public void startGame() {
}
public void startWOTD() {
}
public boolean isGameRunning() {
return randomWord.equals("")||randomWord.equals(null);
}
private void stopGame() {
}
}