programmed everything besides the winningEvalouation

TODO: Update UML at later state
This commit is contained in:
2020-09-10 12:53:36 +02:00
parent 945b942484
commit 11c0d12b27
20 changed files with 371 additions and 3 deletions

View File

@@ -0,0 +1,29 @@
package Cards;
public enum CardValue {
Narr(0),
Eins(1),
Zwei(2),
Drei(3),
Vier(4),
Fünf(5),
Sechs(6),
Sieben(7),
Acht(8),
Neun(9),
Zehn(10),
Elf(11),
Zwölf(12),
Dreizehn(13),
Zauberer(14);
int index;
private CardValue(int i){
this.index = i;
}
public int getIndex() {
return index;
}
}