aboutsummaryrefslogtreecommitdiff
path: root/src/Java/miscutil/gregtech/api/init/InitGregtech.java
blob: a1f1f1eb41c5242065fc31b2b2588b2b12290ccf (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
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.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();
		}

	}
}