Updated wiki links

This commit is contained in:
Anuken
2020-11-28 23:59:56 -05:00
parent 3d6fd8a351
commit 23fc86fac1
4 changed files with 6 additions and 18 deletions

View File

@@ -4,7 +4,7 @@ import arc.graphics.g2d.*;
import arc.math.*;
import mindustry.world.*;
/**A type of floor that is overlaid on top of over floors.*/
/**A type of floor that is overlaid on top of other floors.*/
public class OverlayFloor extends Floor{
public OverlayFloor(String name){

View File

@@ -1,16 +0,0 @@
package mindustry.world.blocks.units;
import mindustry.gen.*;
import mindustry.world.*;
public class ControlCenter extends Block{
public ControlCenter(String name){
super(name);
update = true;
}
public class ControlCenterBuild extends Building{
}
}