diff options
| author | Unknown <shekwancheung0528@gmail.com> | 2018-12-22 13:17:31 +0800 |
|---|---|---|
| committer | Unknown <shekwancheung0528@gmail.com> | 2018-12-22 13:17:31 +0800 |
| commit | 15f6cc9eb567b6ef685bc6c1a6f3364270300914 (patch) | |
| tree | 3c2911284faccd10f97e3aa307719ec12efd4b53 /src/main/java/me/shedaniel/plugin/crafting/VanillaCraftingRecipe.java | |
| parent | 449fc73beb20ceda44a12422129151a88306fac8 (diff) | |
| download | RoughlyEnoughItems-15f6cc9eb567b6ef685bc6c1a6f3364270300914.tar.gz RoughlyEnoughItems-15f6cc9eb567b6ef685bc6c1a6f3364270300914.tar.bz2 RoughlyEnoughItems-15f6cc9eb567b6ef685bc6c1a6f3364270300914.zip | |
from aei but like jei now
Diffstat (limited to 'src/main/java/me/shedaniel/plugin/crafting/VanillaCraftingRecipe.java')
| -rwxr-xr-x | src/main/java/me/shedaniel/plugin/crafting/VanillaCraftingRecipe.java | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/main/java/me/shedaniel/plugin/crafting/VanillaCraftingRecipe.java b/src/main/java/me/shedaniel/plugin/crafting/VanillaCraftingRecipe.java new file mode 100755 index 000000000..f39b5d695 --- /dev/null +++ b/src/main/java/me/shedaniel/plugin/crafting/VanillaCraftingRecipe.java @@ -0,0 +1,16 @@ +package me.shedaniel.plugin.crafting; + +import me.shedaniel.api.IRecipe; +import net.minecraft.item.ItemStack; + +public abstract class VanillaCraftingRecipe implements IRecipe<ItemStack> { + + public int getWidth() { + return 2; + } + + public int getHeight() { + return 2; + } + +} |
