#pragma once #ifndef JAK_DGOWRITER_H #define JAK_DGOWRITER_H #include struct DgoDescription { std::string dgo_name; struct DgoEntry { std::string file_name; std::string name_in_dgo; }; std::vector entries; }; void build_dgo(const DgoDescription& description); #endif // JAK_DGOWRITER_H