jak-project/decompiler/level_extractor/extract_actors.h
water111 74250a22f7
Save entities to JSON, and make custom level building a little faster (#2973)
This will create a folder like `decompiler_out/jak1/entities` and save a
JSON file per level with all the actors.

Also, it should hopefully make custom level building a little faster.
2023-09-09 17:06:39 -04:00

9 lines
180 B
C++

#pragma once
#include "decompiler/level_extractor/BspHeader.h"
namespace decompiler {
std::string extract_actors_to_json(const level_tools::DrawableInlineArrayActor& actors);
}