Package com.pointcliki.dizgruntled.rez

Examples of com.pointcliki.dizgruntled.rez.MonolithWWD


  }
 
  public void load(File f) {
    try {
      if (f.getName().toLowerCase().endsWith(".wwd")) {
        fMap = new Map(this, new MonolithWWD(new MonolithFile(f)));
      } else {
        JSONObject json = new JSONObject(new JSONTokener(new FileReader(f)));
        fMap = new Map(this, json);
      }
    } catch (FileNotFoundException e) {
View Full Code Here


    }
    fLocation = f;
  }
 
  public void importLevel(MonolithFile f) {
    fMap = new Map(this, new MonolithWWD(f));
    fLocation = null;
  }
View Full Code Here

TOP

Related Classes of com.pointcliki.dizgruntled.rez.MonolithWWD

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.