new Class Parser and corresponding enums created
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user