03.08.2020

This commit is contained in:
blues 2020-08-03 15:47:16 +02:00
parent aeb31962de
commit d0b89a4d86
4 changed files with 4 additions and 4 deletions

View File

@ -59,7 +59,7 @@ public class Main extends Application {
private void handleButtonAction(ActionEvent event) {
}
// Game
// G A M E
public void initialize(URL url, ResourceBundle rb) {
label = progress;
@ -170,9 +170,9 @@ public class Main extends Application {
// Returns the difficult wordlist
public InputStream difficult() {
String easy = "/wordeasy.txt";
String medium = "/wordmedium.txt";
String hard = "/wordhard.txt";
String easy = "/wordlists/wordeasy.txt";
String medium = "/wordlists/wordmedium.txt";
String hard = "/wordlists/wordhard.txt";
InputStream in = null;