mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-10 14:58:10 -05:00
15 lines
295 B
C++
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)
|
|
{
|
|
}
|