15 lines
408 B
Java
15 lines
408 B
Java
package WayofTime.alchemicalWizardry.api.event;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraftforge.fml.common.eventhandler.Cancelable;
|
|
|
|
@Cancelable
|
|
public class ItemDrainInContainerEvent extends SoulNetworkEvent
|
|
{
|
|
public ItemStack stack;
|
|
public ItemDrainInContainerEvent(ItemStack stack, String ownerNetwork, int drainAmount)
|
|
{
|
|
super(ownerNetwork, drainAmount);
|
|
this.stack = stack;
|
|
}
|
|
}
|