blob: c610107d04721b29d54f1a0fb79d5ace0c3fab07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
package miscutil.gregtech.api.init;
import static miscutil.core.lib.LoadedMods.Gregtech;
import miscutil.gregtech.api.init.machines.GregtechConduits;
import miscutil.gregtech.api.init.machines.GregtechEnergyBuffer;
import miscutil.gregtech.api.init.machines.GregtechIndustrialCentrifuge;
import miscutil.gregtech.api.init.machines.GregtechIndustrialCokeOven;
import miscutil.gregtech.api.init.machines.GregtechIndustrialPlatePress;
import miscutil.gregtech.api.init.machines.GregtechSafeBlock;
import miscutil.gregtech.api.init.machines.GregtechSteamCondenser;
public class InitGregtech {
public static void run() {
if (Gregtech) {
GregtechEnergyBuffer.run();
GregtechConduits.run();
GregtechSteamCondenser.run();
GregtechSafeBlock.run();
GregtechIndustrialCentrifuge.run();
GregtechIndustrialCokeOven.run();
GregtechIndustrialPlatePress.run();
}
}
}
|