ActuallyAdditions/src/main/java/ellpeck/someprettytechystuff/booklet/ContainerInfoBook.java
2015-01-05 22:14:04 +01:00

17 lines
368 B
Java

package ellpeck.someprettytechystuff.booklet;
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;
}
}