feat: add bind for loading fastfiles to ModMan

This commit is contained in:
Jan Laupetin
2025-10-11 19:04:46 +01:00
parent 42473a7320
commit 4911cfa4c6
15 changed files with 215 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
#pragma once
#include "Zone/Zone.h"
#include <memory>
#include <vector>
class FastFileContext
{
public:
bool LoadFastFile(const std::string& path);
std::vector<std::unique_ptr<Zone>> m_loaded_zones;
};