Misc bugfixes, AI hit retaliation

This commit is contained in:
Anuken
2022-05-06 23:33:22 -04:00
parent f6e68e91d0
commit 6740b60af2
4 changed files with 19 additions and 7 deletions

View File

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