forked from IF-LK-2020/wordle
Game Klasse hinzugefügt
This commit is contained in:
25
Game.java
Normal file
25
Game.java
Normal 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() {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user