Package de.eydamos.backpack.inventory

Examples of de.eydamos.backpack.inventory.InventoryBackpackSlot


    @Override
    public ContainerAdvanced getContainer(PlayerSave player, IInventory[] inventories, EntityPlayer entityPlayer) {
        AbstractInventoryBackpack inventorySlot;

        if(BackpackUtil.isServerSide()) {
            inventorySlot = new InventoryBackpackSlot(player);
        } else {
            inventorySlot = new InventoryBasic(Localizations.INVENTORY_PERSONAL, false, 1);
        }
        InventoryPickup inventoryPickup = new InventoryPickup();
        ContainerAdvanced container = new ContainerPersonalSlot(inventorySlot, inventoryPickup);
View Full Code Here

TOP

Related Classes of de.eydamos.backpack.inventory.InventoryBackpackSlot

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.