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

14 lines
279 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
import javax.annotation.Nonnull;
2016-10-08 21:46:16 +02:00
public class RecipeUtils {
@Nonnull
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
}