blob: b6513a3e201816f689f273026fb72c05f07b7ec9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
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()
{}
/**
* @param entityplayer
* @return
*/
@Override
public boolean canInteractWith(EntityPlayer entityplayer)
{
return true;
}
}
|