Anleitungsscreen(#18)

This commit is contained in:
Johannes-coderer
2022-01-14 00:32:13 +01:00
parent ee0f2384be
commit 96b999dd39
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";
}
}
}
}