[client] add AppTheme

This commit is contained in:
2019-07-09 17:45:07 +03:00
parent 24f5b0c218
commit 1ec1c3baae
14 changed files with 172 additions and 212 deletions

View File

@@ -21,7 +21,7 @@ class ControllerParser {
public static function defaultName(controller:Controller):String {
return switch controller {
case HUMAN(index): 'Player $index';
case HUMAN(index): 'Player ${index + 1}';
case BOT(_) | NONE: null;
}
}