use of net.runelite.cache.definitions.exporters.ObjectExporter in project runelite by runelite.
the class ObjectManager method dump.
public void dump(File out) throws IOException {
out.mkdirs();
for (ObjectDefinition def : objects.values()) {
ObjectExporter exporter = new ObjectExporter(def);
File targ = new File(out, def.getId() + ".json");
exporter.exportTo(targ);
}
}
Aggregations