aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gtPlusPlus/xmod/thermalfoundation/block/TFBlocks.java
blob: 4e238ae5f5ca0bd849e7b4b44323ad72a67fdba0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package gtPlusPlus.xmod.thermalfoundation.block;

import cofh.core.fluid.BlockFluidCoFHBase;

public class TFBlocks {

    public static BlockFluidCoFHBase blockFluidPyrotheum;
    public static BlockFluidCoFHBase blockFluidCryotheum;
    public static BlockFluidCoFHBase blockFluidEnder;

    public static void preInit() {
        blockFluidPyrotheum = new TFBlockFluidPyrotheum();
        blockFluidCryotheum = new TFBlockFluidCryotheum();
        blockFluidEnder = new TFBlockFluidEnder();
        blockFluidPyrotheum.preInit();
        blockFluidCryotheum.preInit();
        blockFluidEnder.preInit();
    }

    public static void init() {}

    public static void postInit() {}
}