mirror of
https://github.com/open-goal/jak-project
synced 2026-06-23 01:19:57 -04:00
18 lines
513 B
C++
18 lines
513 B
C++
#pragma once
|
|
|
|
#include "common/custom_data/Tfrag3Data.h"
|
|
|
|
#include "decompiler/ObjectFile/ObjectFileDB.h"
|
|
#include "decompiler/data/TextureDB.h"
|
|
#include "decompiler/level_extractor/common_formats.h"
|
|
|
|
namespace decompiler {
|
|
|
|
void extract_merc(const ObjectFileData& ag_data,
|
|
const TextureDB& tex_db,
|
|
const DecompilerTypeSystem& dts,
|
|
const std::vector<level_tools::TextureRemap>& map,
|
|
tfrag3::Level& out,
|
|
bool dump_level);
|
|
}
|