2012-09-09 06:21:44 +02:00
|
|
|
package ee3.common.container;
|
|
|
|
|
|
|
|
import net.minecraft.src.ContainerWorkbench;
|
|
|
|
import net.minecraft.src.EntityPlayer;
|
|
|
|
import net.minecraft.src.InventoryPlayer;
|
|
|
|
import net.minecraft.src.World;
|
|
|
|
|
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
|
|
|
|
|
|
|
}
|