mirror of
https://github.com/open-goal/jak-project
synced 2026-07-06 05:54:45 -04:00
be976d2e69
* docs for ee merc code * wip * more extraction stuff * partial mat1 working * mat1 * cleanup * partial mat2 and mat3 support * merc extraction seems to work
17 lines
512 B
C++
17 lines
512 B
C++
#pragma once
|
|
|
|
#include "decompiler/data/TextureDB.h"
|
|
#include "common/custom_data/Tfrag3Data.h"
|
|
#include "decompiler/ObjectFile/ObjectFileDB.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);
|
|
}
|