Read assetlists for ignoring assets

This commit is contained in:
Jan
2021-03-11 14:04:53 +01:00
parent 88b5eefe24
commit 792509d11d
7 changed files with 269 additions and 16 deletions

View File

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