improved instructions screen (#18)

This commit is contained in:
2022-01-14 13:58:06 +01:00
parent 08fdbeb79b
commit e00b93d13c
7 changed files with 454 additions and 427 deletions

View File

@@ -17,26 +17,6 @@ public enum Card {
WEREWOLF;
public enum Suit {
NONE,
YELLOW {
public String toString() {
return "Gelb";
}
},
RED {
public String toString() {
return "Rot";
}
},
GREEN {
public String toString() {
return "Grün";
}
},
BLUE {
public String toString() {
return "Blau";
}
}
NONE, YELLOW, RED, GREEN, BLUE
}
}