summaryrefslogtreecommitdiff
path: root/java/darkknight/jewelrycraft/container/ContainerGuide.java
blob: 53f5bb8ae5f50d52ad07970749ef8c6d2768a07c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package darkknight.jewelrycraft.container;

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

/**
 * User: joel / Date: 16.12.13 / Time: 22:36
 */
public class ContainerGuide extends Container
{
    
    public ContainerGuide()
    {
    }
    
    @Override
    public boolean canInteractWith(EntityPlayer entityplayer)
    {
        return true;
    }
}