mirror of
https://github.com/open-goal/jak-project
synced 2026-06-19 07:47:29 -04:00
1e33dcda4b
* Remove assets folder, use more std::filesystem * windows fix * another one for windows * another one * better system for different folders * rm debugging stuff * let extractor override everything * dont revert jak1 change
11 lines
309 B
C++
11 lines
309 B
C++
#pragma once
|
|
|
|
#include <filesystem>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace decompiler {
|
|
void process_streamed_audio(const std::filesystem::path& output_path,
|
|
const std::filesystem::path& input_dir,
|
|
const std::vector<std::string>& audio_files);
|
|
} |