blob: fc6c5bf6b283d2c3b371d264827bc54bee4a59e4 (
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
|
package darkknight.jewelrycraft.client.gui.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;
}
}
|