mirror of
https://github.com/open-goal/jak-project
synced 2026-06-16 14:50:32 -04:00
9737dfad34
Resolves #19
20 lines
327 B
C++
20 lines
327 B
C++
#pragma once
|
|
|
|
#ifndef JAK_DGOWRITER_H
|
|
#define JAK_DGOWRITER_H
|
|
|
|
#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);
|
|
|
|
#endif // JAK_DGOWRITER_H
|