Examples of SlotLinked


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

    public ContainerTrackRelayer(InventoryPlayer inventoryplayer, EntityCartTrackRelayer cart) {
        super(cart);
        this.cart = cart;
        addSlot(new SlotTrackFilter(cart.getPattern(), 0, 26, 43));
        addSlot(track = new SlotTrackFilter(cart.getPattern(), 1, 71, 43));
        addSlot(new SlotLinked(cart, 0, 130, 43, track));
        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.SlotLinked

        addSlot(new SlotBlockFilter(cart.getPattern(), 1, 35, 45));
        addSlot(new SlotBlockFilter(cart.getPattern(), 2, 17, 87));
        addSlot(new SlotBlockFilter(cart.getPattern(), 3, 35, 87));
        addSlot(under = new SlotUndercutterFilter(cart.getPattern(), 4, 80, 45));
        addSlot(side = new SlotUndercutterFilter(cart.getPattern(), 5, 80, 87));
        addSlot(new SlotLinked(cart, 0, 131, 45, under));
        addSlot(new SlotLinked(cart, 1, 131, 87, side));

        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, 123 + 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.