Progress on sector state
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
package mindustry.world.blocks.campaign;
|
||||
|
||||
import mindustry.*;
|
||||
import mindustry.gen.*;
|
||||
import mindustry.world.*;
|
||||
|
||||
public class CoreLauncher extends Block{
|
||||
|
||||
public CoreLauncher(String name){
|
||||
super(name);
|
||||
|
||||
hasItems = true;
|
||||
configurable = true;
|
||||
}
|
||||
|
||||
public class CoreLauncherEntity extends TileEntity{
|
||||
|
||||
@Override
|
||||
public void updateTile(){
|
||||
super.updateTile();
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean configTapped(){
|
||||
//TODO show w/ sector
|
||||
Vars.ui.planet.show();
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
package mindustry.world.blocks.storage;
|
||||
package mindustry.world.blocks.campaign;
|
||||
|
||||
import arc.*;
|
||||
import arc.graphics.*;
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
package mindustry.world.blocks.production;
|
||||
package mindustry.world.blocks.campaign;
|
||||
|
||||
import arc.scene.ui.layout.*;
|
||||
import arc.util.ArcAnnotate.*;
|
||||
Reference in New Issue
Block a user