All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.nukkit.inventory.CustomInventory Maven / Gradle / Ivy

Go to download

A Minecraft Bedrock Edition server software implementation made in Java from scratch which supports all new features.

There is a newer version: 1.6.0.1-PN
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy