Package mods.railcraft.common.gui.slots

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


    private Slot track;

    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

TOP

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

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.