Package mods.railcraft.common.gui.slots

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


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

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

        addSlot(new SlotFuel(tile, 0, 62, 39));
        addSlot(new SlotWater(tile, 1, 143, 21));
        addSlot(new SlotOutput(tile, 2, 143, 56));

        for (int i = 0; i < 3; i++) {
            for (int k = 0; k < 9; k++) {
View Full Code Here


        this.bore = bore;

        addSlot(new SlotBore(bore, 0, 17, 36));

        for (int i = 0; i < 6; i++) {
            addSlot(fuel = new SlotFuel(bore, i + 1, 62 + i * 18, 36));
        }

        for (int i = 0; i < 9; i++) {
            addSlot(ballast = new SlotBallast(bore, i + 7, 8 + i * 18, 72));
        }
View Full Code Here

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

        addSlot(input = new SlotWater(tile, 0, 143, 21));
        addSlot(output = new SlotOutput(tile, 1, 143, 56));
        addSlot(fuel = new SlotFuel(tile, 2, 62, 39));
        addSlot(new SlotFuel(tile, 3, 89, 20));
        addSlot(new SlotFuel(tile, 4, 89, 38));
        addSlot(new SlotFuel(tile, 5, 89, 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

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

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.