Files
2022-06-22 23:37:46 -04:00

20 lines
557 B
C++

#pragma once
#include <vector>
#include "common/math/Vector.h"
#include "decompiler/ObjectFile/ObjectFileDB.h"
namespace decompiler {
// extract everything
void extract_all_levels(const ObjectFileDB& db,
const TextureDB& tex_db,
const std::vector<std::string>& dgo_names,
const std::string& common_name,
const DecompileHacks& hacks,
bool debug_dump_level,
bool extract_collision);
} // namespace decompiler