cn.nukkit.inventory.CustomInventory 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.item.Item;
import java.util.Map;
/**
* @author MagicDroidX (Nukkit Project)
*/
public abstract class CustomInventory extends ContainerInventory {
public CustomInventory(InventoryHolder holder, InventoryType type) {
super(holder, type);
}
public CustomInventory(InventoryHolder holder, InventoryType type, Map items) {
super(holder, type, items);
}
public CustomInventory(InventoryHolder holder, InventoryType type, Map items, Integer overrideSize) {
super(holder, type, items, overrideSize);
}
public CustomInventory(InventoryHolder holder, InventoryType type, Map items, Integer overrideSize, String overrideTitle) {
super(holder, type, items, overrideSize, overrideTitle);
}
}