blob: 4136137d976a82ab739d6c30af353343c6e0ce22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
package com.detrav.gui.containers;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.entity.player.InventoryPlayer;
import net.minecraft.inventory.Container;
import net.minecraft.item.ItemStack;
import net.minecraft.world.World;
/**
* Created by Detrav on 30.10.2016.
*/
public class DetravPortableAnvilContainer extends Container {
public DetravPortableAnvilContainer(InventoryPlayer inventory, World world, ItemStack currentEquippedItem) {
}
@Override
public boolean canInteractWith(EntityPlayer p_75145_1_) {
return true;
}
}
|