aboutsummaryrefslogtreecommitdiff
path: root/src/Java/miscutil/gregtech/api/init/InitGregtech.java
blob: 45435821c579988e060ea293f40d441e9a372d40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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.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();
		}

	}
}