BiomesOPlenty/src/minecraft/forestry/api/fuels/GeneratorFuel.java

29 lines
750 B
Java
Raw Normal View History

2013-05-03 13:00:44 +00:00
package forestry.api.fuels;
import java.util.HashMap;
public class GeneratorFuel {
public static HashMap<Integer, GeneratorFuel> fuels = new HashMap<Integer, GeneratorFuel>();
/**
* LiquidStack representing the fuel type and amount consumed per triggered cycle.
*/
//public final LiquidStack fuelConsumed;
2013-05-03 13:00:44 +00:00
/**
* EU emitted per tick while this fuel is being consumed in the generator (i.e. biofuel = 32, biomass = 8).
*/
//public final int eu;
2013-05-03 13:00:44 +00:00
/**
* Rate at which the fuel is consumed. 1 - Every tick 2 - Every second tick 3 - Every third tick etc.
*/
//public final int rate;
2013-05-03 13:00:44 +00:00
/*public GeneratorFuel(LiquidStack fuelConsumed, int eu, int rate) {
2013-05-03 13:00:44 +00:00
this.fuelConsumed = fuelConsumed;
this.eu = eu;
this.rate = rate;
}*/
2013-05-03 13:00:44 +00:00
}