aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/bop/HANDLER_BiomesOPlenty.java
blob: 2c109b8834673317841dcb4d33aa647943c411ae (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
27
28
29
30
31
package gtPlusPlus.xmod.bop;

import gtPlusPlus.core.lib.LoadedMods;
import gtPlusPlus.xmod.bop.blocks.BOP_Block_Registrator;

public class HANDLER_BiomesOPlenty {

	
	
	public static void preInit(){
		if (LoadedMods.BiomesOPlenty){
			BOP_Block_Registrator.run();
		}

	}

	public static void init(){
		if (LoadedMods.BiomesOPlenty){

		}
	}

	public static void postInit(){
		if (LoadedMods.BiomesOPlenty){

		}

	}


}