Multiplayer bugfixes

This commit is contained in:
Anuken
2020-07-09 13:13:57 -04:00
parent 29e9d064df
commit 2584197a02
24 changed files with 139 additions and 70 deletions

View File

@@ -6,6 +6,10 @@ public interface UnitController{
void unit(Unit unit);
Unit unit();
default boolean isValidController(){
return true;
}
default void command(UnitCommand command){
}