Add support for Mouse Wheel Event passing to Items. the clean way.

This commit is contained in:
AlgorithmX2
2014-05-26 03:25:17 -05:00
parent 425f144f25
commit 82ac1eb2e7
2 changed files with 41 additions and 1 deletions
+10
View File
@@ -0,0 +1,10 @@
package appeng.helpers;
import net.minecraft.item.ItemStack;
public interface IMouseWheelItem
{
void onWheel(ItemStack is, boolean up);
}