ActuallyAdditions/src/main/java/ellpeck/someprettytechystuff/booklet/ContainerInfoBook.java

17 lines
368 B
Java
Raw Normal View History

2015-01-05 22:14:01 +01:00
package ellpeck.someprettytechystuff.booklet;
2014-12-20 21:34:07 +01:00
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.Container;
public class ContainerInfoBook extends Container {
@SuppressWarnings("unused")
public ContainerInfoBook(EntityPlayer player){
}
public boolean canInteractWith(EntityPlayer player){
return true;
}
}