2014-11-30 17:56:10 -05:00
|
|
|
package WayofTime.alchemicalWizardry.api.event;
|
|
|
|
|
|
|
|
import net.minecraft.item.ItemStack;
|
2015-07-29 08:23:01 -04:00
|
|
|
import net.minecraftforge.fml.common.eventhandler.Cancelable;
|
2014-11-30 17:56:10 -05:00
|
|
|
|
|
|
|
@Cancelable
|
|
|
|
public class ItemDrainInContainerEvent extends SoulNetworkEvent
|
|
|
|
{
|
|
|
|
public ItemStack stack;
|
|
|
|
public ItemDrainInContainerEvent(ItemStack stack, String ownerNetwork, int drainAmount)
|
|
|
|
{
|
|
|
|
super(ownerNetwork, drainAmount);
|
|
|
|
this.stack = stack;
|
|
|
|
}
|
|
|
|
}
|