blob: 6046efa16f6b1f3c25685b26f5546504e1212de3 (
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
|
package miscutil.xmod.growthcraft;
import miscutil.core.lib.LoadedMods;
import miscutil.xmod.growthcraft.booze.Register_Booze;
public class HANDLER_GC {
//Run me during Pre-Init
public static void preInit(){
if (LoadedMods.Growthcraft){
Register_Booze.preInit();
}
}
public static void init(){
if (LoadedMods.Growthcraft){
}
}
public static void postInit(){
if (LoadedMods.Growthcraft){
}
}
}
|