blob: 63d0c49b2fbad9c7593d83e8050e15403d8f114b (
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
|
package gtPlusPlus.xmod.thermalfoundation.fluid;
import net.minecraftforge.fluids.Fluid;
import net.minecraftforge.fluids.FluidRegistry;
import gtPlusPlus.api.objects.Logger;
public class TF_Fluids {
public static Fluid fluidPyrotheum;
public static Fluid fluidCryotheum;
public static Fluid fluidEnder;
public static void preInit() {
Logger.INFO("Adding in our own versions of Thermal Foundation Fluids - Non-GT");
final Fluid pyrotheum = FluidRegistry.getFluid("pyrotheum");
final Fluid cryotheum = FluidRegistry.getFluid("cryotheum");
final Fluid ender = FluidRegistry.getFluid("ender");
fluidPyrotheum = pyrotheum;
fluidCryotheum = cryotheum;
fluidEnder = ender;
}
public static void init() {}
public static void postInit() {}
}
|