DEATH AND DESTRUCTION

This commit is contained in:
Anuken
2022-02-15 16:46:32 -05:00
parent 3babe7686b
commit c324f2124b
135 changed files with 704 additions and 2080 deletions

View File

@@ -69,10 +69,6 @@ public class AIController implements UnitController{
return false;
}
public UnitCommand command(){
return unit.team.data().command;
}
public void updateVisuals(){
if(unit.isFlying()){
unit.wobble();

View File

@@ -1,18 +0,0 @@
package mindustry.entities.units;
import arc.*;
public enum UnitCommand{
attack, rally, idle;
private final String localized;
public static final UnitCommand[] all = values();
UnitCommand(){
localized = Core.bundle.get("command." + name());
}
public String localized(){
return localized;
}
}

View File

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