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

ZoneLoading: Add dumping for Rawfile based assets

This commit is contained in:
Jan
2019-11-16 01:24:09 +01:00
parent 16a6da932f
commit 73489ee455
20 changed files with 337 additions and 3 deletions

View File

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