OSDN Git Service

1.5.2準拠実装
[alchemy-mod/moda.git] / asia / tcrs / mtc / ContainerPortableWorkbench.java
1 package asia.tcrs.mtc;
2
3 import net.minecraft.entity.player.EntityPlayer;
4 import net.minecraft.entity.player.InventoryPlayer;
5 import net.minecraft.inventory.ContainerWorkbench;
6 import net.minecraft.world.World;
7
8 public class ContainerPortableWorkbench extends ContainerWorkbench {
9
10         public ContainerPortableWorkbench(InventoryPlayer par1InventoryPlayer, World par2World, int par3, int par4, int par5) {
11                 super(par1InventoryPlayer, par2World, par3, par4, par5);
12         }
13
14         @Override
15         public boolean canInteractWith(EntityPlayer par1EntityPlayer) {
16                 return true;
17         }
18         
19         
20
21 }