cn.nukkit.inventory.DropperInventory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of powernukkit Show documentation
Show all versions of powernukkit Show documentation
A Minecraft Bedrock Edition server software implementation made in Java from scratch which supports all new features.
package cn.nukkit.inventory;
import cn.nukkit.api.PowerNukkitDifference;
import cn.nukkit.blockentity.BlockEntityDropper;
@PowerNukkitDifference(since = "1.4.0.0-PN", info = "Extends EjectableInventory only in PowerNukkit")
public class DropperInventory extends EjectableInventory {
public DropperInventory(BlockEntityDropper blockEntity) {
super(blockEntity, InventoryType.DROPPER);
}
@Override
public BlockEntityDropper getHolder() {
return (BlockEntityDropper) super.getHolder();
}
}