Anleitungsscreen(#18)

This commit is contained in:
Johannes Hochwart
2022-01-14 00:32:13 +01:00
parent 9a726335e1
commit fffe6968b1
8 changed files with 412 additions and 6 deletions

View File

@@ -17,6 +17,26 @@ public enum Card {
WEREWOLF;
public enum Suit {
NONE, YELLOW, RED, GREEN, BLUE
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";
}
}
}
}