mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-19 07:42:54 +00:00
14 lines
281 B
C++
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)
|
|
{
|
|
}
|