Package mods.railcraft.common.gui.containers

Examples of mods.railcraft.common.gui.containers.ContainerAnchor


    private final TileAnchorWorld tile;
    private final ContainerAnchor container;

    public GuiWorldAnchor(InventoryPlayer playerInv, TileAnchorWorld anchor) {
        super(anchor, new ContainerAnchor(playerInv, anchor), RailcraftConstants.GUI_TEXTURE_FOLDER + "gui_single_slot.png");
        xSize = 176;
        ySize = 140;
        this.tile = anchor;
        container = (ContainerAnchor) inventorySlots;
    }
View Full Code Here


    private final EntityCartAnchor cartAnchor;
    private final ContainerAnchor container;

    public GuiCartAnchor(InventoryPlayer playerInv, EntityCartAnchor anchor) {
        super(anchor, new ContainerAnchor(playerInv, anchor), RailcraftConstants.GUI_TEXTURE_FOLDER + "gui_single_slot.png");
        xSize = 176;
        ySize = 140;
        cartAnchor = anchor;
        container = (ContainerAnchor) inventorySlots;
    }
View Full Code Here

TOP

Related Classes of mods.railcraft.common.gui.containers.ContainerAnchor

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.