Package mods.railcraft.common.gui.containers

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


    private ToolTip unlockedToolTips;
    private ToolTip notownedToolTips;
    private String ownerName = "[Unknown]";

    public GuiTrackRouting(InventoryPlayer inv, TrackRouting track) {
        super((RailcraftTileEntity) track.getTile(), new ContainerTrackRouting(inv, track), RailcraftConstants.GUI_TEXTURE_FOLDER + "gui_track_routing.png");
        ySize = 140;
        this.track = track;
        this.player = inv.player;
        lockedToolTips = ToolTip.buildToolTip("railcraft.gui.tip.button.lock.locked", "{owner}=" + ownerName);
        unlockedToolTips = ToolTip.buildToolTip("railcraft.gui.tip.button.lock.unlocked", "{owner}=" + ownerName);
View Full Code Here

TOP

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

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.