mirror of
https://github.com/open-goal/jak-project.git
synced 2024-11-23 06:09:57 +00:00
6446389263
* extractor: refactor and cleanup for multi-game support * deps: switch to `ghc::filesystem` as it is utf-8 everywhere by default * extractor: finally working with unicode * unicode: fix unicode cli args on windows in all `main` functions
21 lines
369 B
C++
21 lines
369 B
C++
#pragma once
|
|
|
|
/*!
|
|
* @file DgoWriter.h
|
|
* Create a DGO from existing files.
|
|
*/
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
struct DgoDescription {
|
|
std::string dgo_name;
|
|
struct DgoEntry {
|
|
std::string file_name;
|
|
std::string name_in_dgo;
|
|
};
|
|
std::vector<DgoEntry> entries;
|
|
};
|
|
|
|
void build_dgo(const DgoDescription& description, const std::string& output_prefix);
|