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