Package amidst.minecraft

Examples of amidst.minecraft.Minecraft


   
    if (Options.instance.minecraftJar != null)
    {
      try {
        Util.setProfileDirectory(Options.instance.minecraftPath);
        MinecraftUtil.setBiomeInterface(new Minecraft(new File(Options.instance.minecraftJar)).createInterface());
        new FinderWindow();
      } catch (MalformedURLException e) {
        Log.crash(e, "MalformedURLException on Minecraft load.");
      }
    }
View Full Code Here


    (new Thread(new Runnable() {
      @Override
      public void run() {
        try {
          Util.setProfileDirectory(profile.getGameDir());
          MinecraftUtil.setBiomeInterface(new Minecraft(profile.getJarFile()).createInterface());
          new FinderWindow();
          VersionSelectWindow.get().dispose();
        } catch (MalformedURLException e) {
          Log.crash(e, "MalformedURLException on Minecraft load.");
        }
View Full Code Here

TOP

Related Classes of amidst.minecraft.Minecraft

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.