#pragma once #include #include #include namespace hex::script::loader { class PythonLoader : public ScriptLoader { public: PythonLoader() : ScriptLoader("Python") {} ~PythonLoader() override = default; bool initialize() override; bool loadAll() override; private: struct Script { void *module; void *mainFunction; }; std::vector