mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-20 08:05:45 +00:00
14 lines
324 B
C++
14 lines
324 B
C++
#include "ZoneCreationContext.h"
|
|
|
|
ZoneCreationContext::ZoneCreationContext()
|
|
: m_asset_search_path(nullptr),
|
|
m_definition(nullptr)
|
|
{
|
|
}
|
|
|
|
ZoneCreationContext::ZoneCreationContext(ISearchPath* assetSearchPath, ZoneDefinition* definition)
|
|
: m_asset_search_path(assetSearchPath),
|
|
m_definition(definition)
|
|
{
|
|
}
|