mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-07 21:38:01 -05:00
18 lines
469 B
C++
18 lines
469 B
C++
#include "ZoneCreationContext.h"
|
|
|
|
namespace fs = std::filesystem;
|
|
|
|
ZoneCreationContext::ZoneCreationContext()
|
|
: m_definition(nullptr),
|
|
m_asset_search_path(nullptr)
|
|
{
|
|
}
|
|
|
|
ZoneCreationContext::ZoneCreationContext(ZoneDefinition* definition, ISearchPath* assetSearchPath, fs::path outDir, fs::path cacheDir)
|
|
: m_definition(definition),
|
|
m_asset_search_path(assetSearchPath),
|
|
m_out_dir(std::move(outDir)),
|
|
m_cache_dir(std::move(cacheDir))
|
|
{
|
|
}
|