initial commit of the files

This commit is contained in:
2024-04-13 11:42:25 +02:00
commit 8f161be085
25 changed files with 1661065 additions and 0 deletions

15
lib/wrapper.h Normal file
View File

@@ -0,0 +1,15 @@
#pragma once
#include <map>
class Wrapper {
public:
Wrapper();
const Il2CppAssembly* GetAssembly(const char* _assembly);
const Il2CppImage* GetImage(const char* _assembly);
Il2CppObject* GetObjectFromClass(const Il2CppImage* _image, const char* _namespaze, const char* _name);
private:
std::map<const char*, const Il2CppAssembly*> assemblyMap;
};