2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-12-10 05:07:48 +00:00

chore: add possibility to provide loading progress callback when loading zones

This commit is contained in:
Jan Laupetin
2025-10-14 16:48:20 +01:00
parent fa7fd26db6
commit 5b3664ad8c
22 changed files with 451 additions and 246 deletions

View File

@@ -0,0 +1,9 @@
#pragma once
#include <cstdlib>
class ProgressCallback
{
public:
virtual void OnProgress(size_t current, size_t total) = 0;
};