Added fluid power manager, imports from forestry and bc

This commit is contained in:
modmuss50 2015-09-08 18:39:59 +01:00
parent 72799a9474
commit 8aafd118f5
9 changed files with 71 additions and 70 deletions

View file

@ -0,0 +1,14 @@
package techreborn.api.fuel;
import net.minecraftforge.fluids.Fluid;
import java.util.HashMap;
public class FluidPowerManager {
/**
* Use this to register a fluid with a power value
*/
public static HashMap<Fluid, Double> fluidPowerValues = new HashMap<Fluid, Double>();
}

View file

@ -0,0 +1,4 @@
@API(apiVersion = "@MODVERSION@", owner = "techreborn", provides = "techrebornAPI") package techreborn.api.fuel;
import cpw.mods.fml.common.API;