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