mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-05 08:29:09 +01:00
18 lines
443 B
Java
18 lines
443 B
Java
|
package ellpeck.actuallyadditions.inventory;
|
||
|
|
||
|
import net.minecraft.entity.player.EntityPlayer;
|
||
|
import net.minecraft.inventory.Container;
|
||
|
import net.minecraft.item.ItemStack;
|
||
|
|
||
|
public class ContainerSmileyCloud extends Container{
|
||
|
|
||
|
@Override
|
||
|
public boolean canInteractWith(EntityPlayer player){
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public ItemStack transferStackInSlot(EntityPlayer player, int slot){
|
||
|
return null;
|
||
|
}
|
||
|
}
|