Examples of SlotLiquidContainerFilled


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

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

        addWidget(new IndicatorWidget(tile.boiler.heatIndicator, 40, 25, 176, 61, 6, 43));

        addSlot(new SlotLiquidContainerFilled(tile, 0, 143, 21));
        addSlot(new SlotOutput(tile, 1, 143, 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

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

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

        addSlot(new SlotMinecartFilter(tile.getCartFilters(), 0, 62, 39));
        addSlot(new SlotMinecartFilter(tile.getCartFilters(), 1, 80, 39));
        addSlot(input = new SlotLiquidContainerFilled(tile, 0, 134, 21));
        addSlot(output = 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
TOP
Copyright © 2018 www.massapi.com. 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.