argh
This commit is contained in:
@@ -3,8 +3,8 @@ package mindustry.entities.units;
|
||||
import mindustry.gen.*;
|
||||
|
||||
public interface UnitController{
|
||||
void unit(Unitc unit);
|
||||
Unitc unit();
|
||||
void unit(Unit unit);
|
||||
Unit unit();
|
||||
|
||||
default void command(UnitCommand command){
|
||||
|
||||
@@ -14,11 +14,11 @@ public interface UnitController{
|
||||
|
||||
}
|
||||
|
||||
default void removed(Unitc unit){
|
||||
default void removed(Unit unit){
|
||||
|
||||
}
|
||||
|
||||
default boolean isBeingControlled(Unitc player){
|
||||
default boolean isBeingControlled(Unit player){
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user