new Class Parser and corresponding enums created

This commit is contained in:
Leonardo Brandenberger
2021-11-29 17:23:55 +01:00
parent cb9e22ea92
commit 54b1d794f8
3 changed files with 40 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
package ch.zhaw.catan;
public enum Command {
NEXTPLAYER ("next Player"), QUIT("quit");
private String CommandWord;
Command(String commandWord) {
this.CommandWord = commandWord;
}
}