Added javaDoc and updated deps

This commit is contained in:
modmuss50 2015-11-22 16:24:50 +00:00
parent d545521d04
commit 7bcc793d12
7 changed files with 72 additions and 26 deletions

View file

@ -19,7 +19,7 @@ public interface IBaseRecipeType {
/**
* This gets the output form the array list
*
* @param i get output form position in arraylist
* @return the output
*/
public ItemStack getOutput(int i);
@ -45,7 +45,7 @@ public interface IBaseRecipeType {
/**
* This should be a user friendly name
*
* @return
* @return The user friendly name of the recipe.
*/
public String getUserFreindlyName();

View file

@ -57,13 +57,13 @@ public class RecipeCrafter {
/**
* This is the constructor, not a lot to say here :P
*
* @param recipeName
* @param parentTile
* @param inputs
* @param outputs
* @param inventory
* @param inputSlots
* @param outputSlots
* @param recipeName The recipe name that should be crafted
* @param parentTile The tile that wil be using this recipe crafter
* @param inputs The amount of input slots
* @param outputs The amount of output slots
* @param inventory The inventory of the machine
* @param inputSlots A list of the input slot ids
* @param outputSlots A list of output slot ids
*/
public RecipeCrafter(String recipeName, TileMachineBase parentTile, int inputs, int outputs, Inventory inventory, int[] inputSlots, int[] outputSlots) {
this.recipeName = recipeName;