2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-07-11 13:41:50 +00:00

Add possibility to override zone name in zone definition

This commit is contained in:
Jan
2023-09-28 20:52:16 +02:00
parent e36367fe01
commit bb94162be4
9 changed files with 43 additions and 11 deletions

View File

@ -6,9 +6,8 @@ ZoneCreationContext::ZoneCreationContext()
{
}
ZoneCreationContext::ZoneCreationContext(std::string zoneName, ISearchPath* assetSearchPath, ZoneDefinition* definition)
: m_zone_name(std::move(zoneName)),
m_asset_search_path(assetSearchPath),
ZoneCreationContext::ZoneCreationContext(ISearchPath* assetSearchPath, ZoneDefinition* definition)
: m_asset_search_path(assetSearchPath),
m_definition(definition)
{
}