Package buildcraft.core.blueprints

Examples of buildcraft.core.blueprints.SchematicRegistry


   
    if (debugPrintSchematicList) {
      try {
        PrintWriter writer = new PrintWriter("SchematicDebug.txt", "UTF-8");
        writer.println("*** REGISTERED SCHEMATICS ***");
        SchematicRegistry reg = (SchematicRegistry) BuilderAPI.schematicRegistry;
        for (String s : reg.schematicBlocks.keySet()) {
          writer.println(s + " -> " + reg.schematicBlocks.get(s).clazz.getCanonicalName());
        }
        writer.close();
      } catch (Exception e) {
View Full Code Here

TOP

Related Classes of buildcraft.core.blueprints.SchematicRegistry

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.