Files
OpenAssetTools/src/ZoneCommon/Zone/AssetList/AssetList.cpp

15 lines
295 B
C++

#include "AssetList.h"
AssetListEntry::AssetListEntry()
: m_type(0u),
m_is_reference(false)
{
}
AssetListEntry::AssetListEntry(const asset_type_t type, std::string name, const bool isReference)
: m_type(type),
m_name(std::move(name)),
m_is_reference(isReference)
{
}