diff options
author | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2019-03-04 18:26:33 +0000 |
---|---|---|
committer | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2019-03-04 18:26:33 +0000 |
commit | af27ff015c4197bb5a6ddb7dd38769f8950a4ac9 (patch) | |
tree | d2b7eb3a05e2aec4f124cc054a535508a6141aae /src/Java/gtPlusPlus/xmod/thaumcraft/aspect/TC_ResearchPage_Wrapper.java | |
parent | 8ead0095f30769b0c12d558953323d45a2790d6e (diff) | |
download | GT5-Unofficial-af27ff015c4197bb5a6ddb7dd38769f8950a4ac9.tar.gz GT5-Unofficial-af27ff015c4197bb5a6ddb7dd38769f8950a4ac9.tar.bz2 GT5-Unofficial-af27ff015c4197bb5a6ddb7dd38769f8950a4ac9.zip |
+ Added more TC wrappers.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/thaumcraft/aspect/TC_ResearchPage_Wrapper.java')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/thaumcraft/aspect/TC_ResearchPage_Wrapper.java | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/src/Java/gtPlusPlus/xmod/thaumcraft/aspect/TC_ResearchPage_Wrapper.java b/src/Java/gtPlusPlus/xmod/thaumcraft/aspect/TC_ResearchPage_Wrapper.java index 256e9c19ed..23d3a9f575 100644 --- a/src/Java/gtPlusPlus/xmod/thaumcraft/aspect/TC_ResearchPage_Wrapper.java +++ b/src/Java/gtPlusPlus/xmod/thaumcraft/aspect/TC_ResearchPage_Wrapper.java @@ -1,6 +1,11 @@ package gtPlusPlus.xmod.thaumcraft.aspect; import java.util.List; + +import gtPlusPlus.xmod.thaumcraft.objects.wrapper.recipe.TC_CrucibleRecipe_Wrapper; +import gtPlusPlus.xmod.thaumcraft.objects.wrapper.recipe.TC_IArcaneRecipe_Wrapper; +import gtPlusPlus.xmod.thaumcraft.objects.wrapper.recipe.TC_InfusionEnchantmentRecipe_Wrapper; +import gtPlusPlus.xmod.thaumcraft.objects.wrapper.recipe.TC_InfusionRecipe_Wrapper; import net.minecraft.item.ItemStack; import net.minecraft.item.crafting.FurnaceRecipes; import net.minecraft.item.crafting.IRecipe; @@ -66,7 +71,7 @@ public class TC_ResearchPage_Wrapper { this.recipe = recipe; } - public TC_ResearchPage_Wrapper(IArcaneRecipe[] recipe) { + public TC_ResearchPage_Wrapper(TC_IArcaneRecipe_Wrapper[] recipe) { this.type = TC_PageType_Wrapper.TEXT; this.text = null; this.research = null; @@ -78,7 +83,7 @@ public class TC_ResearchPage_Wrapper { this.recipe = recipe; } - public TC_ResearchPage_Wrapper(CrucibleRecipe[] recipe) { + public TC_ResearchPage_Wrapper(TC_CrucibleRecipe_Wrapper[] recipe) { this.type = TC_PageType_Wrapper.TEXT; this.text = null; this.research = null; @@ -90,7 +95,7 @@ public class TC_ResearchPage_Wrapper { this.recipe = recipe; } - public TC_ResearchPage_Wrapper(InfusionRecipe[] recipe) { + public TC_ResearchPage_Wrapper(TC_InfusionRecipe_Wrapper[] recipe) { this.type = TC_PageType_Wrapper.TEXT; this.text = null; this.research = null; @@ -114,7 +119,7 @@ public class TC_ResearchPage_Wrapper { this.recipe = recipe; } - public TC_ResearchPage_Wrapper(IArcaneRecipe recipe) { + public TC_ResearchPage_Wrapper(TC_IArcaneRecipe_Wrapper recipe) { this.type = TC_PageType_Wrapper.TEXT; this.text = null; this.research = null; @@ -127,7 +132,7 @@ public class TC_ResearchPage_Wrapper { this.recipeOutput = recipe.getRecipeOutput(); } - public TC_ResearchPage_Wrapper(CrucibleRecipe recipe) { + public TC_ResearchPage_Wrapper(TC_CrucibleRecipe_Wrapper recipe) { this.type = TC_PageType_Wrapper.TEXT; this.text = null; this.research = null; @@ -153,7 +158,7 @@ public class TC_ResearchPage_Wrapper { this.recipeOutput = FurnaceRecipes.smelting().getSmeltingResult(input); } - public TC_ResearchPage_Wrapper(InfusionRecipe recipe) { + public TC_ResearchPage_Wrapper(TC_InfusionRecipe_Wrapper recipe) { this.type = TC_PageType_Wrapper.TEXT; this.text = null; this.research = null; @@ -171,7 +176,7 @@ public class TC_ResearchPage_Wrapper { } - public TC_ResearchPage_Wrapper(InfusionEnchantmentRecipe recipe) { + public TC_ResearchPage_Wrapper(TC_InfusionEnchantmentRecipe_Wrapper recipe) { this.type = TC_PageType_Wrapper.TEXT; this.text = null; this.research = null; |