feat: Added support for adding custom providers through C#

This commit is contained in:
WerWolv
2024-03-10 22:05:26 +01:00
parent d817a813b0
commit 0186f2f456
8 changed files with 221 additions and 32 deletions

View File

@@ -17,7 +17,8 @@ namespace hex::script::loader {
bool loadAll() override;
private:
std::function<bool(const std::fs::path&)> m_loadAssembly;
std::function<int(const std::string &, bool, const std::fs::path&)> m_runMethod;
std::function<bool(const std::string &, const std::fs::path&)> m_methodExists;
std::fs::path::string_type m_assemblyLoaderPathString;
};