Logic progress

This commit is contained in:
Anuken
2020-08-06 12:31:04 -04:00
parent 7482e2a988
commit 5dc78a24e0
30 changed files with 2933 additions and 2582 deletions
@@ -0,0 +1,28 @@
package mindustry.world.blocks.logic;
import mindustry.*;
import mindustry.gen.*;
import mindustry.world.*;
public class LogicProcessor extends Block{
public LogicProcessor(String name){
super(name);
update = true;
configurable = true;
}
public class LogicEntity extends Building{
@Override
public void updateTile(){
}
@Override
public boolean configTapped(){
Vars.ui.logic.show();
return false;
}
}
}