package forestry.api.fuels; import java.util.HashMap; import net.minecraft.item.ItemStack; import net.minecraftforge.fluids.Fluid; import net.minecraftforge.fluids.FluidStack; public class FuelManager { /** * Add new fuels for the fermenter here (i.e. fertilizer). Will accept Items, ItemStacks and Strings (Ore Dictionary) */ public static HashMap fermenterFuel; /** * Add new resources for the moistener here (i.e. wheat) */ public static HashMap moistenerResource; /** * Add new substrates for the rainmaker here */ public static HashMap rainSubstrate; /** * Add new fuels for EngineBronze (= biogas engine) here */ public static HashMap bronzeEngineFuel; /** * Add new fuels for EngineCopper (= peat-fired engine) here */ public static HashMap copperEngineFuel; // Generator fuel list in GeneratorFuel.class }