UnitType cleanup

This commit is contained in:
Anuken
2020-02-04 11:40:56 -05:00
parent 006004fd70
commit 1d0cfd4435
14 changed files with 76 additions and 236 deletions

View File

@@ -1,5 +1,12 @@
package mindustry.entities.units;
import mindustry.gen.*;
//TODO rename
public class UnitController{
public abstract class UnitController{
protected Unitc unit;
public void set(Unitc unit){
this.unit = unit;
}
}