Package net.minecraftforge.gradle.json.version

Examples of net.minecraftforge.gradle.json.version.Version


    }

    public static Version loadVersion(File json) throws JsonSyntaxException, JsonIOException, IOException
    {
        FileReader reader = new FileReader(json);
        Version v =  GSON.fromJson(reader, Version.class);
        reader.close();
        return v;
    }
View Full Code Here

TOP

Related Classes of net.minecraftforge.gradle.json.version.Version

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.