Added Fusion Reactor

This commit is contained in:
Modmuss50 2015-11-16 21:10:39 +00:00
parent 473a981f51
commit a63128aa7e
6 changed files with 175 additions and 3 deletions

View file

@ -41,6 +41,15 @@ public class FusionReactorRecipe {
*/
int tickTime;
/**
*
* @param topInput This is the top slot stack
* @param bottomInput This is the bottom slot stack
* @param output This is the output stack
* @param startEU This is the inital EU amount
* @param euTick This is the eu that is transfured every tick
* @param tickTime This is the time the recipe takes to process
*/
public FusionReactorRecipe(ItemStack topInput, ItemStack bottomInput, ItemStack output, double startEU, double euTick, int tickTime) {
this.topInput = topInput;
this.bottomInput = bottomInput;