TechReborn/src/main/java/techreborn/utils/RecipeUtils.java

12 lines
235 B
Java
Raw Normal View History

2015-11-08 13:15:45 +01:00
package techreborn.utils;
2015-09-23 18:27:41 +02:00
import net.minecraft.item.ItemStack;
import techreborn.items.DynamicCell;
2015-09-23 18:27:41 +02:00
2016-03-25 10:47:34 +01:00
public class RecipeUtils
{
public static ItemStack getEmptyCell(int stackSize) {
return DynamicCell.getEmptyCell(stackSize);
2016-03-25 10:47:34 +01:00
}
2015-09-23 18:27:41 +02:00
}