Files
Mindustry/core/src/mindustry/content/ErekirTechTree.java

32 lines
782 B
Java
Raw Normal View History

2021-11-28 13:48:06 -05:00
package mindustry.content;
import static mindustry.content.Blocks.*;
import static mindustry.content.TechTree.*;
public class ErekirTechTree{
public static void load(){
rootErekir = node(coreBastion, () -> {
node(duct, () -> {
node(ductRouter, () -> {
node(ductBridge, () -> {
node(surgeConveyor, () -> {
node(surgeRouter);
});
});
node(overflowDuct, () -> {
});
node(reinforcedContainer, () -> {
node(reinforcedVault, () -> {
});
});
});
});
});
}
}