Files
OpenAssetTools/src/ZoneCommon/Zone/AssetList/AssetList.cpp
2023-10-07 19:41:54 +02:00

14 lines
281 B
C++

#include "AssetList.h"
AssetListEntry::AssetListEntry()
: 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)
{
}