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

@ -1,10 +1,13 @@
#include "AssetList.h"
AssetListEntry::AssetListEntry()
= default;
AssetListEntry::AssetListEntry(std::string type, std::string name)
: m_type(std::move(type)),
m_name(std::move(name))
: m_is_reference(false)
{
}
AssetListEntry::AssetListEntry(std::string type, std::string name, const bool isReference)
: m_type(std::move(type)),
m_name(std::move(name)),
m_is_reference(isReference)
{
}