Package net.ftb.workers

Examples of net.ftb.workers.ModpackLoader


    /**
     * Loads the modpack.xml and adds it to the modpack array in this class
     */
    public static void loadXml (ArrayList<String> xmlFile) {
        ModpackLoader loader = new ModpackLoader(xmlFile);
        loader.start();
    }
View Full Code Here


    }

    public static void loadXml (String xmlFile) {
        ArrayList<String> temp = Lists.newArrayList();
        temp.add(xmlFile);
        ModpackLoader loader = new ModpackLoader(temp);
        loader.start();
    }
View Full Code Here

TOP

Related Classes of net.ftb.workers.ModpackLoader

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.