summaryrefslogtreecommitdiff
path: root/src/main/java/jp/plusplus/fbs/container/ContainerDummy.java
blob: ed92fc7d9d6a182ce13cbf89569806d0b1a650be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package jp.plusplus.fbs.container;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.Container;

/**
 * Createdby pluslus_Fon 2015/06/14.
 */
public class ContainerDummy extends Container {
    @Override
    public boolean canInteractWith(EntityPlayer entityPlayer) {
        return false;
    }
}