Package net.ftb.workers

Examples of net.ftb.workers.ModpackLoader.start()


    /**
     * 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();
    }

    public static void loadXml (String xmlFile) {
        ArrayList<String> temp = Lists.newArrayList();
        temp.add(xmlFile);
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();
    }

    /**
     * Adds modpack to the modpacks array
     * @param pack - a ModPack instance
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.