mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-07-11 05:31:51 +00:00
Rename AssetLoading from Linker to ZoneCreation
This commit is contained in:
12
src/Linker/ZoneCreation/ZoneCreationContext.cpp
Normal file
12
src/Linker/ZoneCreation/ZoneCreationContext.cpp
Normal file
@ -0,0 +1,12 @@
|
||||
#include "ZoneCreationContext.h"
|
||||
|
||||
ZoneCreationContext::ZoneCreationContext()
|
||||
: m_asset_search_path(nullptr)
|
||||
{
|
||||
}
|
||||
|
||||
ZoneCreationContext::ZoneCreationContext(std::string zoneName, ISearchPath* assetSearchPath)
|
||||
: m_asset_search_path(assetSearchPath),
|
||||
m_zone_name(std::move(zoneName))
|
||||
{
|
||||
}
|
Reference in New Issue
Block a user