2014-09-24 02:26:27 +02:00
|
|
|
package appeng.container;
|
|
|
|
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
import net.minecraft.inventory.Container;
|
|
|
|
|
|
|
|
/*
|
2014-09-28 11:47:17 +02:00
|
|
|
* Totally useless container that does nothing.
|
2014-09-24 02:26:27 +02:00
|
|
|
*/
|
|
|
|
public class ContainerNull extends Container
|
|
|
|
{
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean canInteractWith(EntityPlayer entityplayer)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|