Package mods.railcraft.common.gui.containers

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


    private TileEnergyLoader tile;
    private boolean waitIfEmpty;
    private boolean waitTillFull;

    public GuiLoaderEnergy(InventoryPlayer inv, TileEnergyLoader tile) {
        super(tile, new ContainerEnergyLoader(inv, tile), RailcraftConstants.GUI_TEXTURE_FOLDER + "gui_energy_loader.png");
        this.tile = tile;
        waitIfEmpty = tile.waitIfEmpty();
        waitTillFull = tile.waitTillFull();
    }
View Full Code Here


    private final String button1Label = LocalizationPlugin.translate("railcraft.gui.energy.unloader.wait");
//    private final String BUTTON1 = "Wait till Empty";
    private TileEnergyUnloader tile;

    public GuiUnloaderEnergy(InventoryPlayer inv, TileEnergyUnloader tile) {
        super(tile, new ContainerEnergyLoader(inv, tile), RailcraftConstants.GUI_TEXTURE_FOLDER + "gui_energy_loader.png");
        this.tile = tile;
        label = tile.getName();
    }
View Full Code Here

TOP

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

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.