Added prototype planet sector land system
This commit is contained in:
19
core/src/mindustry/world/TileGen.java
Normal file
19
core/src/mindustry/world/TileGen.java
Normal file
@@ -0,0 +1,19 @@
|
||||
package mindustry.world;
|
||||
|
||||
import mindustry.content.*;
|
||||
|
||||
public class TileGen{
|
||||
public Block floor;
|
||||
public Block block ;
|
||||
public Block overlay;
|
||||
|
||||
{
|
||||
reset();
|
||||
}
|
||||
|
||||
public void reset(){
|
||||
floor = Blocks.stone;
|
||||
block = Blocks.air;
|
||||
overlay = Blocks.air;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user