blob: f0793d63fd9ad6a7ff1330187f58d2936cdab1c7 (
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;
import gregtech.api.util.GT_Config;
import miscutil.gregtech.api.enums.GregtechOrePrefixes.GT_Materials;
import miscutil.gregtech.common.blocks.fluid.GregtechFluidHandler;
public class HANDLER_Gregtech {
public static GT_Config mMaterialProperties = null;
public static void preInit(){
if (mMaterialProperties != null){
GT_Materials.init(mMaterialProperties);
GregtechFluidHandler.run();
}
}
public static void init(){
}
public static void postInit(){
}
}
|