Package mods.railcraft.common.gui.slots

Examples of mods.railcraft.common.gui.slots.SlotLiquidContainerEmpty


        addWidget(new FluidGaugeWidget(tile.getTankManager().get(0), 17, 23, 176, 0, 16, 47));

        addSlot(new SlotMinecartFilter(tile.getCartFilters(), 0, 44, 39));
        addSlot(new SlotMinecartFilter(tile.getCartFilters(), 1, 62, 39));
        addSlot(new SlotLiquidFilter(tile.getLiquidFilter(), 0, 89, 39));
        addSlot(input = new SlotLiquidContainerEmpty(tile, 0, 134, 21));
        addSlot(new SlotOutput(tile, 1, 134, 56));

        for (int i = 0; i < 3; i++) {
            for (int k = 0; k < 9; k++) {
                addSlot(new Slot(inventoryplayer, k + i * 9 + 9, 8 + k * 18, 84 + i * 18));
 
View Full Code Here


        addWidget(new FluidGaugeWidget(tile.getTankManager().get(0), 90, 24, 176, 0, 48, 47));

        addSlot(new SlotCokeOven(tile, 0, 16, 43));
        addSlot(new SlotOutput(tile, 1, 62, 43));
        addSlot(new SlotOutput(tile, 2, 149, 57));
        addSlot(new SlotLiquidContainerEmpty(tile, 3, 149, 22));
        for (int i = 0; i < 3; i++) {
            for (int k = 0; k < 9; k++) {
                addSlot(new Slot(inventoryplayer, k + i * 9 + 9, 8 + k * 18, 84 + i * 18));
            }

View Full Code Here

TOP

Related Classes of mods.railcraft.common.gui.slots.SlotLiquidContainerEmpty

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.