Added missing player type.

This commit is contained in:
LevelX2 2017-04-04 09:21:14 +02:00
parent a04bbce5db
commit 989250c7f6

View file

@ -7,6 +7,7 @@ public enum PlayerType {
HUMAN("Human"),
COMPUTER_DRAFT_BOT("Computer - draftbot"),
COMPUTER_MINIMAX_HYBRID("Computer - minimax hybrid"),
COMPUTER_MONTE_CARLO("Computer - monte carlo"),
COMPUTER_MAD("Computer - mad");
String description;