Examples of SlotLiquidFilter


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

    public ContainerDetectorTank(InventoryPlayer inventoryplayer, TileDetector tile) {
        super(((DetectorTank) tile.getDetector()).getFilters());
        this.tile = tile;
        this.detector = (DetectorTank) tile.getDetector();
        addSlot(new SlotLiquidFilter(detector.getFilters(), 0, 26, 24));
//        addSlot(new Slot(tile, 0, 60, 24));
        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, 58 + i * 18));
            }
View Full Code Here

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

        super(cart);
        this.tank = cart;

        addWidget(new FluidGaugeWidget(cart.getTankManager().get(0), 35, 23, 176, 0, 16, 47));

        addSlot(new SlotLiquidFilter(cart.getFilter(), 0, 71, 39));
        addSlot(input = new SlotLiquidContainer(cart.getInvLiquids(), 0, 116, 21));
        addSlot(new SlotOutput(cart.getInvLiquids(), 1, 116, 56));

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

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

        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++) {
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.