18 lines
606 B
Java
18 lines
606 B
Java
package forestry.api.storage;
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.inventory.IInventory;
|
|
import net.minecraftforge.event.Event;
|
|
|
|
public abstract class BackpackEvent extends Event {
|
|
|
|
public final EntityPlayer player;
|
|
public final IBackpackDefinition backpackDefinition;
|
|
public final IInventory backpackInventory;
|
|
|
|
public BackpackEvent(EntityPlayer player, IBackpackDefinition backpackDefinition, IInventory backpackInventory) {
|
|
this.player = player;
|
|
this.backpackDefinition = backpackDefinition;
|
|
this.backpackInventory = backpackInventory;
|
|
}
|
|
}
|