use of net.runelite.cache.definitions.exporters.NpcExporter in project runelite by runelite.
the class NpcManager method dump.
public void dump(File out) throws IOException {
out.mkdirs();
for (NpcDefinition def : npcs) {
NpcExporter exporter = new NpcExporter(def);
File targ = new File(out, def.id + ".json");
exporter.exportTo(targ);
}
}
Aggregations