Package mods.railcraft.common.gui.widgets

Examples of mods.railcraft.common.gui.widgets.Widget


    public ContainerRouting(InventoryPlayer playerInv, IRouter route) {
        super(route.getInventory());
        this.router = route;
        this.playerInv = playerInv;

        errorElement = new Widget(16, 24, 176, 0, 16, 16) {
            @Override
            public ToolTip getToolTip() {
                if (router.getLogic() != null && router.getLogic().getError() != null)
                    return router.getLogic().getError().getToolTip();
                return null;
View Full Code Here

TOP

Related Classes of mods.railcraft.common.gui.widgets.Widget

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.