2012-12-17 21:21:53 +01:00
|
|
|
package com.pahimar.ee3.inventory;
|
2012-09-09 06:21:44 +02:00
|
|
|
|
2012-12-13 16:01:41 +01:00
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
import net.minecraft.entity.player.InventoryPlayer;
|
|
|
|
import net.minecraft.inventory.ContainerWorkbench;
|
|
|
|
import net.minecraft.world.World;
|
2012-09-09 06:21:44 +02:00
|
|
|
|
2012-10-27 23:41:02 +02:00
|
|
|
/**
|
|
|
|
* ContainerPortableCrafting
|
|
|
|
*
|
|
|
|
* Container class for the portable crafting interface
|
|
|
|
*
|
|
|
|
* @author pahimar
|
|
|
|
* @license Lesser GNU Public License v3 (http://www.gnu.org/licenses/lgpl.html)
|
|
|
|
*
|
|
|
|
*/
|
2012-09-09 06:21:44 +02:00
|
|
|
public class ContainerPortableCrafting extends ContainerWorkbench {
|
|
|
|
|
|
|
|
public ContainerPortableCrafting(InventoryPlayer inventoryPlayer, World world, int x, int y, int z) {
|
|
|
|
super(inventoryPlayer, world, x, y, z);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean canInteractWith(EntityPlayer var1) {
|
|
|
|
return true;
|
|
|
|
}
|
2012-09-24 21:58:15 +02:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onCraftGuiClosed(EntityPlayer player) {
|
|
|
|
super.onCraftGuiClosed(player);
|
|
|
|
}
|
2012-09-09 06:21:44 +02:00
|
|
|
|
|
|
|
}
|