2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-06-26 22:31:50 +00:00

ZoneLoading: Make AssetDumpers get the zone via their args

This commit is contained in:
Jan
2019-11-19 02:30:04 +01:00
parent 7077ba8ce3
commit 11168c782f
15 changed files with 30 additions and 29 deletions

View File

@ -1,5 +1,6 @@
#pragma once
#include "Zone/Zone.h"
#include "Pool/AssetPool.h"
template<class T>
@ -8,5 +9,5 @@ class IAssetDumper
public:
virtual ~IAssetDumper() = default;
virtual void DumpPool(AssetPool<T>* pool, const std::string& basePath) = 0;
virtual void DumpPool(Zone* zone, AssetPool<T>* pool, const std::string& basePath) = 0;
};