├── API ├── Callback.hpp ├── Class.hpp ├── Domain.hpp ├── ResolveCall.hpp ├── String.hpp └── Thread.hpp ├── Data.hpp ├── Defines.hpp ├── IL2CPP_Resolver.hpp ├── LICENSE ├── Quaternion.hpp ├── README.md ├── SystemTypeCache.hpp ├── Unity ├── API │ ├── Camera.hpp │ ├── Component.hpp │ ├── GameObject.hpp │ ├── LayerMask.hpp │ ├── Object.hpp │ ├── Rigidbody.hpp │ └── Transform.hpp ├── Defines.hpp ├── Obfuscators.hpp └── Structures │ ├── Engine.hpp │ ├── System_String.hpp │ ├── il2cpp.hpp │ ├── il2cppArray.hpp │ └── il2cppDictionary.hpp ├── Utils ├── Hash.hpp ├── Helper.hpp └── VTable.hpp ├── Vector2.hpp └── Vector3.hpp /API/Callback.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KING-UTKARSH/Il2cpp_Resolver_Android/HEAD/API/Callback.hpp -------------------------------------------------------------------------------- /API/Class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KING-UTKARSH/Il2cpp_Resolver_Android/HEAD/API/Class.hpp -------------------------------------------------------------------------------- /API/Domain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KING-UTKARSH/Il2cpp_Resolver_Android/HEAD/API/Domain.hpp -------------------------------------------------------------------------------- /API/ResolveCall.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KING-UTKARSH/Il2cpp_Resolver_Android/HEAD/API/ResolveCall.hpp -------------------------------------------------------------------------------- /API/String.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KING-UTKARSH/Il2cpp_Resolver_Android/HEAD/API/String.hpp -------------------------------------------------------------------------------- /API/Thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KING-UTKARSH/Il2cpp_Resolver_Android/HEAD/API/Thread.hpp -------------------------------------------------------------------------------- /Data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KING-UTKARSH/Il2cpp_Resolver_Android/HEAD/Data.hpp -------------------------------------------------------------------------------- /Defines.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KING-UTKARSH/Il2cpp_Resolver_Android/HEAD/Defines.hpp -------------------------------------------------------------------------------- /IL2CPP_Resolver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KING-UTKARSH/Il2cpp_Resolver_Android/HEAD/IL2CPP_Resolver.hpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KING-UTKARSH/Il2cpp_Resolver_Android/HEAD/LICENSE -------------------------------------------------------------------------------- /Quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KING-UTKARSH/Il2cpp_Resolver_Android/HEAD/Quaternion.hpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KING-UTKARSH/Il2cpp_Resolver_Android/HEAD/README.md -------------------------------------------------------------------------------- /SystemTypeCache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KING-UTKARSH/Il2cpp_Resolver_Android/HEAD/SystemTypeCache.hpp -------------------------------------------------------------------------------- /Unity/API/Camera.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KING-UTKARSH/Il2cpp_Resolver_Android/HEAD/Unity/API/Camera.hpp -------------------------------------------------------------------------------- /Unity/API/Component.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KING-UTKARSH/Il2cpp_Resolver_Android/HEAD/Unity/API/Component.hpp -------------------------------------------------------------------------------- /Unity/API/GameObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KING-UTKARSH/Il2cpp_Resolver_Android/HEAD/Unity/API/GameObject.hpp -------------------------------------------------------------------------------- /Unity/API/LayerMask.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KING-UTKARSH/Il2cpp_Resolver_Android/HEAD/Unity/API/LayerMask.hpp -------------------------------------------------------------------------------- /Unity/API/Object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KING-UTKARSH/Il2cpp_Resolver_Android/HEAD/Unity/API/Object.hpp -------------------------------------------------------------------------------- /Unity/API/Rigidbody.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KING-UTKARSH/Il2cpp_Resolver_Android/HEAD/Unity/API/Rigidbody.hpp -------------------------------------------------------------------------------- /Unity/API/Transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KING-UTKARSH/Il2cpp_Resolver_Android/HEAD/Unity/API/Transform.hpp -------------------------------------------------------------------------------- /Unity/Defines.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KING-UTKARSH/Il2cpp_Resolver_Android/HEAD/Unity/Defines.hpp -------------------------------------------------------------------------------- /Unity/Obfuscators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KING-UTKARSH/Il2cpp_Resolver_Android/HEAD/Unity/Obfuscators.hpp -------------------------------------------------------------------------------- /Unity/Structures/Engine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KING-UTKARSH/Il2cpp_Resolver_Android/HEAD/Unity/Structures/Engine.hpp -------------------------------------------------------------------------------- /Unity/Structures/System_String.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KING-UTKARSH/Il2cpp_Resolver_Android/HEAD/Unity/Structures/System_String.hpp -------------------------------------------------------------------------------- /Unity/Structures/il2cpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KING-UTKARSH/Il2cpp_Resolver_Android/HEAD/Unity/Structures/il2cpp.hpp -------------------------------------------------------------------------------- /Unity/Structures/il2cppArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KING-UTKARSH/Il2cpp_Resolver_Android/HEAD/Unity/Structures/il2cppArray.hpp -------------------------------------------------------------------------------- /Unity/Structures/il2cppDictionary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KING-UTKARSH/Il2cpp_Resolver_Android/HEAD/Unity/Structures/il2cppDictionary.hpp -------------------------------------------------------------------------------- /Utils/Hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KING-UTKARSH/Il2cpp_Resolver_Android/HEAD/Utils/Hash.hpp -------------------------------------------------------------------------------- /Utils/Helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KING-UTKARSH/Il2cpp_Resolver_Android/HEAD/Utils/Helper.hpp -------------------------------------------------------------------------------- /Utils/VTable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KING-UTKARSH/Il2cpp_Resolver_Android/HEAD/Utils/VTable.hpp -------------------------------------------------------------------------------- /Vector2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KING-UTKARSH/Il2cpp_Resolver_Android/HEAD/Vector2.hpp -------------------------------------------------------------------------------- /Vector3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KING-UTKARSH/Il2cpp_Resolver_Android/HEAD/Vector3.hpp --------------------------------------------------------------------------------