Applied-Energistics-2-tiler.../src/main/java/appeng/container/ContainerNull.java

19 lines
317 B
Java
Raw Normal View History

2014-09-24 02:26:27 +02:00
package appeng.container;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.Container;
/*
* 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;
}
}