From d0f3249a4758a57ee46cffd09a586cd276ffcd98 Mon Sep 17 00:00:00 2001 From: draknyte1 Date: Sun, 2 Oct 2016 18:47:23 +1000 Subject: + Added missing dependencies. --- .../xmod/gregtech/api/interfaces/internal/Interface_ToolStats.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/Java/gtPlusPlus/xmod/gregtech/api/interfaces/internal') diff --git a/src/Java/gtPlusPlus/xmod/gregtech/api/interfaces/internal/Interface_ToolStats.java b/src/Java/gtPlusPlus/xmod/gregtech/api/interfaces/internal/Interface_ToolStats.java index 3d94d449a6..26b8dc1d3d 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/api/interfaces/internal/Interface_ToolStats.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/api/interfaces/internal/Interface_ToolStats.java @@ -1,6 +1,8 @@ package gtPlusPlus.xmod.gregtech.api.interfaces.internal; import gregtech.api.interfaces.IIconContainer; +import gregtech.api.interfaces.IToolStats; +import gregtech.api.items.GT_MetaGenerated_Tool; import gtPlusPlus.xmod.gregtech.api.items.Gregtech_MetaTool; import java.util.List; @@ -19,7 +21,7 @@ import net.minecraftforge.event.world.BlockEvent; *

* And this is supposed to not have any ItemStack Parameters as these are generic Stats. */ -public interface Interface_ToolStats { +public interface Interface_ToolStats extends IToolStats{ /** * Called when aPlayer crafts this Tool */ @@ -156,5 +158,5 @@ public interface Interface_ToolStats { /** * Called when this gets added to a Tool Item */ - //public void onStatsAddedToTool(GT_MetaGenerated_Tool aItem, int aID); + public void onStatsAddedToTool(GT_MetaGenerated_Tool aItem, int aID); } \ No newline at end of file -- cgit