Write IPak base skeleton without data

This commit is contained in:
Jan
2023-10-07 19:41:54 +02:00
parent 23d0fe1eb0
commit 8514378465
15 changed files with 390 additions and 62 deletions

View File

@ -7,9 +7,10 @@ class AssetListEntry
public:
std::string m_type;
std::string m_name;
bool m_is_reference;
AssetListEntry();
AssetListEntry(std::string type, std::string name);
AssetListEntry(std::string type, std::string name, bool isReference);
};
class AssetList