jak-project/common/util/DgoWriter.h
water111 660ef41136
Update documentation and clean up (#129)
* cleanup

* clean up file layout
2020-11-21 12:52:38 -05:00

20 lines
317 B
C++

#pragma once
/*!
* @file DgoWriter.h
* Create a DGO from existing files.
*/
#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);