aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/thermalfoundation/block/TF_Blocks.java
blob: 867f8c7f7d945bdbe003adeaab41b31470ae71da (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 gtPlusPlus.xmod.thermalfoundation.block;

import cofh.core.fluid.BlockFluidCoFHBase;

public class TF_Blocks
{
  
  public static BlockFluidCoFHBase blockFluidPyrotheum;
  public static BlockFluidCoFHBase blockFluidCryotheum;
  
  
  public static void preInit()
  {
    blockFluidPyrotheum = new TF_Block_Fluid_Pyrotheum();
    blockFluidCryotheum = new TF_Block_Fluid_Cryotheum();
    blockFluidPyrotheum.preInit();
    blockFluidCryotheum.preInit();
  }
  
  public static void init() {}
  
  public static void postInit()
  {
    
  }
}