├── Cheat ├── Functions │ └── Functions.h ├── Hooks │ ├── Hooks.cpp │ └── Hooks.h ├── Signatures │ ├── Signatures.cpp │ └── Signatures.h └── Utils │ ├── Offsets.h │ ├── SDK.h │ └── Variables.h ├── DX11Hook.sln ├── DX11Hook.vcxproj ├── DX11Hook.vcxproj.filters ├── DX11Hook.vcxproj.user ├── DllMain.cpp ├── IL2CPPResolver ├── Cache.cpp ├── Cache.hpp ├── Data.cpp ├── Data.hpp ├── Defines.hpp ├── Functions │ ├── Callback.cpp │ ├── Callback.hpp │ ├── Class.cpp │ ├── Class.hpp │ ├── Domain.hpp │ ├── ResolveCall.hpp │ ├── String.cpp │ ├── String.hpp │ ├── Thread.cpp │ └── Thread.hpp ├── Includes.hpp ├── Unity │ ├── API │ │ ├── Camera.cpp │ │ ├── Camera.hpp │ │ ├── Component.cpp │ │ ├── Component.hpp │ │ ├── GameObject.cpp │ │ ├── GameObject.hpp │ │ ├── LayerMask.cpp │ │ ├── LayerMask.hpp │ │ ├── Object.cpp │ │ ├── Object.hpp │ │ ├── Rigidbody.cpp │ │ ├── Rigidbody.hpp │ │ ├── Transform.cpp │ │ ├── Transform.hpp │ │ ├── _TEMPLATE_API.cpp │ │ └── _TEMPLATE_API.hpp │ ├── Defines.hpp │ ├── Includes.hpp │ ├── Obfuscators.cpp │ ├── Obfuscators.hpp │ └── Structures │ │ ├── Engine.hpp │ │ ├── Includes.hpp │ │ ├── System_String.hpp │ │ ├── il2cpp.hpp │ │ ├── il2cppArray.hpp │ │ └── il2cppDictionary.hpp ├── Utils │ ├── Helper.cpp │ ├── Helper.hpp │ ├── Joaat.hpp │ └── VFunc.hpp ├── il2cpp_resolver.cpp ├── il2cpp_resolver.hpp └── lazyimporter.h ├── README.md └── Utils ├── Backend ├── Backend.cpp └── Backend.h ├── IL2CPPHeader └── il2cpp.h ├── ImGui ├── build_win32.bat ├── imconfig.h ├── imgui.cpp ├── imgui.h ├── imgui_demo.cpp ├── imgui_draw.cpp ├── imgui_impl_dx11.cpp ├── imgui_impl_dx11.h ├── imgui_impl_win32.cpp ├── imgui_impl_win32.h ├── imgui_internal.h ├── imgui_tables.cpp ├── imgui_widgets.cpp ├── imstb_rectpack.h ├── imstb_textedit.h └── imstb_truetype.h ├── Math └── Vectors │ ├── Vector2.h │ └── Vector3.h └── Utils.h /Cheat/Functions/Functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/Cheat/Functions/Functions.h -------------------------------------------------------------------------------- /Cheat/Hooks/Hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/Cheat/Hooks/Hooks.cpp -------------------------------------------------------------------------------- /Cheat/Hooks/Hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/Cheat/Hooks/Hooks.h -------------------------------------------------------------------------------- /Cheat/Signatures/Signatures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/Cheat/Signatures/Signatures.cpp -------------------------------------------------------------------------------- /Cheat/Signatures/Signatures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/Cheat/Signatures/Signatures.h -------------------------------------------------------------------------------- /Cheat/Utils/Offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/Cheat/Utils/Offsets.h -------------------------------------------------------------------------------- /Cheat/Utils/SDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/Cheat/Utils/SDK.h -------------------------------------------------------------------------------- /Cheat/Utils/Variables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/Cheat/Utils/Variables.h -------------------------------------------------------------------------------- /DX11Hook.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/DX11Hook.sln -------------------------------------------------------------------------------- /DX11Hook.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/DX11Hook.vcxproj -------------------------------------------------------------------------------- /DX11Hook.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/DX11Hook.vcxproj.filters -------------------------------------------------------------------------------- /DX11Hook.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/DX11Hook.vcxproj.user -------------------------------------------------------------------------------- /DllMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/DllMain.cpp -------------------------------------------------------------------------------- /IL2CPPResolver/Cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/Cache.cpp -------------------------------------------------------------------------------- /IL2CPPResolver/Cache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/Cache.hpp -------------------------------------------------------------------------------- /IL2CPPResolver/Data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/Data.cpp -------------------------------------------------------------------------------- /IL2CPPResolver/Data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/Data.hpp -------------------------------------------------------------------------------- /IL2CPPResolver/Defines.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/Defines.hpp -------------------------------------------------------------------------------- /IL2CPPResolver/Functions/Callback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/Functions/Callback.cpp -------------------------------------------------------------------------------- /IL2CPPResolver/Functions/Callback.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/Functions/Callback.hpp -------------------------------------------------------------------------------- /IL2CPPResolver/Functions/Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/Functions/Class.cpp -------------------------------------------------------------------------------- /IL2CPPResolver/Functions/Class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/Functions/Class.hpp -------------------------------------------------------------------------------- /IL2CPPResolver/Functions/Domain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/Functions/Domain.hpp -------------------------------------------------------------------------------- /IL2CPPResolver/Functions/ResolveCall.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/Functions/ResolveCall.hpp -------------------------------------------------------------------------------- /IL2CPPResolver/Functions/String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/Functions/String.cpp -------------------------------------------------------------------------------- /IL2CPPResolver/Functions/String.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/Functions/String.hpp -------------------------------------------------------------------------------- /IL2CPPResolver/Functions/Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/Functions/Thread.cpp -------------------------------------------------------------------------------- /IL2CPPResolver/Functions/Thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/Functions/Thread.hpp -------------------------------------------------------------------------------- /IL2CPPResolver/Includes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/Includes.hpp -------------------------------------------------------------------------------- /IL2CPPResolver/Unity/API/Camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/Unity/API/Camera.cpp -------------------------------------------------------------------------------- /IL2CPPResolver/Unity/API/Camera.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/Unity/API/Camera.hpp -------------------------------------------------------------------------------- /IL2CPPResolver/Unity/API/Component.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/Unity/API/Component.cpp -------------------------------------------------------------------------------- /IL2CPPResolver/Unity/API/Component.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/Unity/API/Component.hpp -------------------------------------------------------------------------------- /IL2CPPResolver/Unity/API/GameObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/Unity/API/GameObject.cpp -------------------------------------------------------------------------------- /IL2CPPResolver/Unity/API/GameObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/Unity/API/GameObject.hpp -------------------------------------------------------------------------------- /IL2CPPResolver/Unity/API/LayerMask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/Unity/API/LayerMask.cpp -------------------------------------------------------------------------------- /IL2CPPResolver/Unity/API/LayerMask.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/Unity/API/LayerMask.hpp -------------------------------------------------------------------------------- /IL2CPPResolver/Unity/API/Object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/Unity/API/Object.cpp -------------------------------------------------------------------------------- /IL2CPPResolver/Unity/API/Object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/Unity/API/Object.hpp -------------------------------------------------------------------------------- /IL2CPPResolver/Unity/API/Rigidbody.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/Unity/API/Rigidbody.cpp -------------------------------------------------------------------------------- /IL2CPPResolver/Unity/API/Rigidbody.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/Unity/API/Rigidbody.hpp -------------------------------------------------------------------------------- /IL2CPPResolver/Unity/API/Transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/Unity/API/Transform.cpp -------------------------------------------------------------------------------- /IL2CPPResolver/Unity/API/Transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/Unity/API/Transform.hpp -------------------------------------------------------------------------------- /IL2CPPResolver/Unity/API/_TEMPLATE_API.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/Unity/API/_TEMPLATE_API.cpp -------------------------------------------------------------------------------- /IL2CPPResolver/Unity/API/_TEMPLATE_API.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/Unity/API/_TEMPLATE_API.hpp -------------------------------------------------------------------------------- /IL2CPPResolver/Unity/Defines.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/Unity/Defines.hpp -------------------------------------------------------------------------------- /IL2CPPResolver/Unity/Includes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/Unity/Includes.hpp -------------------------------------------------------------------------------- /IL2CPPResolver/Unity/Obfuscators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/Unity/Obfuscators.cpp -------------------------------------------------------------------------------- /IL2CPPResolver/Unity/Obfuscators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/Unity/Obfuscators.hpp -------------------------------------------------------------------------------- /IL2CPPResolver/Unity/Structures/Engine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/Unity/Structures/Engine.hpp -------------------------------------------------------------------------------- /IL2CPPResolver/Unity/Structures/Includes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/Unity/Structures/Includes.hpp -------------------------------------------------------------------------------- /IL2CPPResolver/Unity/Structures/System_String.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/Unity/Structures/System_String.hpp -------------------------------------------------------------------------------- /IL2CPPResolver/Unity/Structures/il2cpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/Unity/Structures/il2cpp.hpp -------------------------------------------------------------------------------- /IL2CPPResolver/Unity/Structures/il2cppArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/Unity/Structures/il2cppArray.hpp -------------------------------------------------------------------------------- /IL2CPPResolver/Unity/Structures/il2cppDictionary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/Unity/Structures/il2cppDictionary.hpp -------------------------------------------------------------------------------- /IL2CPPResolver/Utils/Helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/Utils/Helper.cpp -------------------------------------------------------------------------------- /IL2CPPResolver/Utils/Helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/Utils/Helper.hpp -------------------------------------------------------------------------------- /IL2CPPResolver/Utils/Joaat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/Utils/Joaat.hpp -------------------------------------------------------------------------------- /IL2CPPResolver/Utils/VFunc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/Utils/VFunc.hpp -------------------------------------------------------------------------------- /IL2CPPResolver/il2cpp_resolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/il2cpp_resolver.cpp -------------------------------------------------------------------------------- /IL2CPPResolver/il2cpp_resolver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/il2cpp_resolver.hpp -------------------------------------------------------------------------------- /IL2CPPResolver/lazyimporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/IL2CPPResolver/lazyimporter.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/README.md -------------------------------------------------------------------------------- /Utils/Backend/Backend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/Utils/Backend/Backend.cpp -------------------------------------------------------------------------------- /Utils/Backend/Backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/Utils/Backend/Backend.h -------------------------------------------------------------------------------- /Utils/IL2CPPHeader/il2cpp.h: -------------------------------------------------------------------------------- 1 | // upload your il2cpp.h file here. -------------------------------------------------------------------------------- /Utils/ImGui/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/Utils/ImGui/build_win32.bat -------------------------------------------------------------------------------- /Utils/ImGui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/Utils/ImGui/imconfig.h -------------------------------------------------------------------------------- /Utils/ImGui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/Utils/ImGui/imgui.cpp -------------------------------------------------------------------------------- /Utils/ImGui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/Utils/ImGui/imgui.h -------------------------------------------------------------------------------- /Utils/ImGui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/Utils/ImGui/imgui_demo.cpp -------------------------------------------------------------------------------- /Utils/ImGui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/Utils/ImGui/imgui_draw.cpp -------------------------------------------------------------------------------- /Utils/ImGui/imgui_impl_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/Utils/ImGui/imgui_impl_dx11.cpp -------------------------------------------------------------------------------- /Utils/ImGui/imgui_impl_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/Utils/ImGui/imgui_impl_dx11.h -------------------------------------------------------------------------------- /Utils/ImGui/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/Utils/ImGui/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /Utils/ImGui/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/Utils/ImGui/imgui_impl_win32.h -------------------------------------------------------------------------------- /Utils/ImGui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/Utils/ImGui/imgui_internal.h -------------------------------------------------------------------------------- /Utils/ImGui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/Utils/ImGui/imgui_tables.cpp -------------------------------------------------------------------------------- /Utils/ImGui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/Utils/ImGui/imgui_widgets.cpp -------------------------------------------------------------------------------- /Utils/ImGui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/Utils/ImGui/imstb_rectpack.h -------------------------------------------------------------------------------- /Utils/ImGui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/Utils/ImGui/imstb_textedit.h -------------------------------------------------------------------------------- /Utils/ImGui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/Utils/ImGui/imstb_truetype.h -------------------------------------------------------------------------------- /Utils/Math/Vectors/Vector2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/Utils/Math/Vectors/Vector2.h -------------------------------------------------------------------------------- /Utils/Math/Vectors/Vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/Utils/Math/Vectors/Vector3.h -------------------------------------------------------------------------------- /Utils/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzmate/IL2CPP-DirectX-ImGui-Base/HEAD/Utils/Utils.h --------------------------------------------------------------------------------