├── FW1FontWrapper ├── .gitkeep ├── CFW1ColorRGBA.cpp ├── CFW1ColorRGBA.h ├── CFW1ColorRGBAInterface.cpp ├── CFW1DWriteRenderTarget.cpp ├── CFW1DWriteRenderTarget.h ├── CFW1DWriteRenderTargetInterface.cpp ├── CFW1Factory.cpp ├── CFW1Factory.h ├── CFW1FactoryInterface.cpp ├── CFW1FontWrapper.cpp ├── CFW1FontWrapper.h ├── CFW1FontWrapperInterface.cpp ├── CFW1GlyphAtlas.cpp ├── CFW1GlyphAtlas.h ├── CFW1GlyphAtlasInterface.cpp ├── CFW1GlyphProvider.cpp ├── CFW1GlyphProvider.h ├── CFW1GlyphProviderInterface.cpp ├── CFW1GlyphRenderStates.cpp ├── CFW1GlyphRenderStates.h ├── CFW1GlyphRenderStatesInterface.cpp ├── CFW1GlyphSheet.cpp ├── CFW1GlyphSheet.h ├── CFW1GlyphSheetInterface.cpp ├── CFW1GlyphVertexDrawer.cpp ├── CFW1GlyphVertexDrawer.h ├── CFW1GlyphVertexDrawerInterface.cpp ├── CFW1Object.h ├── CFW1StateSaver.cpp ├── CFW1StateSaver.h ├── CFW1TextGeometry.cpp ├── CFW1TextGeometry.h ├── CFW1TextGeometryInterface.cpp ├── CFW1TextRenderer.cpp ├── CFW1TextRenderer.h ├── CFW1TextRendererInterface.cpp ├── FW1CompileSettings.h ├── FW1FontWrapper.cpp ├── FW1FontWrapper.h ├── FW1Precompiled.cpp └── FW1Precompiled.h ├── Minhook ├── .gitkeep ├── include │ ├── .gitkeep │ └── MinHook.h └── src │ ├── .gitkeep │ ├── HDE │ ├── .gitkeep │ ├── hde32.c │ ├── hde32.h │ ├── hde64.c │ ├── hde64.h │ ├── pstdint.h │ ├── table32.h │ └── table64.h │ ├── buffer.c │ ├── buffer.h │ ├── hook.c │ ├── trampoline.c │ └── trampoline.h ├── README.md ├── d3d11hook.sln ├── d3d11hook.vcxproj ├── d3d11hook.vcxproj.filters ├── d3d11hook.vcxproj.user ├── main.h ├── renderer.h ├── universal.cpp └── warframed3d11.jpg /FW1FontWrapper/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /FW1FontWrapper/CFW1ColorRGBA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/FW1FontWrapper/CFW1ColorRGBA.cpp -------------------------------------------------------------------------------- /FW1FontWrapper/CFW1ColorRGBA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/FW1FontWrapper/CFW1ColorRGBA.h -------------------------------------------------------------------------------- /FW1FontWrapper/CFW1ColorRGBAInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/FW1FontWrapper/CFW1ColorRGBAInterface.cpp -------------------------------------------------------------------------------- /FW1FontWrapper/CFW1DWriteRenderTarget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/FW1FontWrapper/CFW1DWriteRenderTarget.cpp -------------------------------------------------------------------------------- /FW1FontWrapper/CFW1DWriteRenderTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/FW1FontWrapper/CFW1DWriteRenderTarget.h -------------------------------------------------------------------------------- /FW1FontWrapper/CFW1DWriteRenderTargetInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/FW1FontWrapper/CFW1DWriteRenderTargetInterface.cpp -------------------------------------------------------------------------------- /FW1FontWrapper/CFW1Factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/FW1FontWrapper/CFW1Factory.cpp -------------------------------------------------------------------------------- /FW1FontWrapper/CFW1Factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/FW1FontWrapper/CFW1Factory.h -------------------------------------------------------------------------------- /FW1FontWrapper/CFW1FactoryInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/FW1FontWrapper/CFW1FactoryInterface.cpp -------------------------------------------------------------------------------- /FW1FontWrapper/CFW1FontWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/FW1FontWrapper/CFW1FontWrapper.cpp -------------------------------------------------------------------------------- /FW1FontWrapper/CFW1FontWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/FW1FontWrapper/CFW1FontWrapper.h -------------------------------------------------------------------------------- /FW1FontWrapper/CFW1FontWrapperInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/FW1FontWrapper/CFW1FontWrapperInterface.cpp -------------------------------------------------------------------------------- /FW1FontWrapper/CFW1GlyphAtlas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/FW1FontWrapper/CFW1GlyphAtlas.cpp -------------------------------------------------------------------------------- /FW1FontWrapper/CFW1GlyphAtlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/FW1FontWrapper/CFW1GlyphAtlas.h -------------------------------------------------------------------------------- /FW1FontWrapper/CFW1GlyphAtlasInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/FW1FontWrapper/CFW1GlyphAtlasInterface.cpp -------------------------------------------------------------------------------- /FW1FontWrapper/CFW1GlyphProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/FW1FontWrapper/CFW1GlyphProvider.cpp -------------------------------------------------------------------------------- /FW1FontWrapper/CFW1GlyphProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/FW1FontWrapper/CFW1GlyphProvider.h -------------------------------------------------------------------------------- /FW1FontWrapper/CFW1GlyphProviderInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/FW1FontWrapper/CFW1GlyphProviderInterface.cpp -------------------------------------------------------------------------------- /FW1FontWrapper/CFW1GlyphRenderStates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/FW1FontWrapper/CFW1GlyphRenderStates.cpp -------------------------------------------------------------------------------- /FW1FontWrapper/CFW1GlyphRenderStates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/FW1FontWrapper/CFW1GlyphRenderStates.h -------------------------------------------------------------------------------- /FW1FontWrapper/CFW1GlyphRenderStatesInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/FW1FontWrapper/CFW1GlyphRenderStatesInterface.cpp -------------------------------------------------------------------------------- /FW1FontWrapper/CFW1GlyphSheet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/FW1FontWrapper/CFW1GlyphSheet.cpp -------------------------------------------------------------------------------- /FW1FontWrapper/CFW1GlyphSheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/FW1FontWrapper/CFW1GlyphSheet.h -------------------------------------------------------------------------------- /FW1FontWrapper/CFW1GlyphSheetInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/FW1FontWrapper/CFW1GlyphSheetInterface.cpp -------------------------------------------------------------------------------- /FW1FontWrapper/CFW1GlyphVertexDrawer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/FW1FontWrapper/CFW1GlyphVertexDrawer.cpp -------------------------------------------------------------------------------- /FW1FontWrapper/CFW1GlyphVertexDrawer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/FW1FontWrapper/CFW1GlyphVertexDrawer.h -------------------------------------------------------------------------------- /FW1FontWrapper/CFW1GlyphVertexDrawerInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/FW1FontWrapper/CFW1GlyphVertexDrawerInterface.cpp -------------------------------------------------------------------------------- /FW1FontWrapper/CFW1Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/FW1FontWrapper/CFW1Object.h -------------------------------------------------------------------------------- /FW1FontWrapper/CFW1StateSaver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/FW1FontWrapper/CFW1StateSaver.cpp -------------------------------------------------------------------------------- /FW1FontWrapper/CFW1StateSaver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/FW1FontWrapper/CFW1StateSaver.h -------------------------------------------------------------------------------- /FW1FontWrapper/CFW1TextGeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/FW1FontWrapper/CFW1TextGeometry.cpp -------------------------------------------------------------------------------- /FW1FontWrapper/CFW1TextGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/FW1FontWrapper/CFW1TextGeometry.h -------------------------------------------------------------------------------- /FW1FontWrapper/CFW1TextGeometryInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/FW1FontWrapper/CFW1TextGeometryInterface.cpp -------------------------------------------------------------------------------- /FW1FontWrapper/CFW1TextRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/FW1FontWrapper/CFW1TextRenderer.cpp -------------------------------------------------------------------------------- /FW1FontWrapper/CFW1TextRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/FW1FontWrapper/CFW1TextRenderer.h -------------------------------------------------------------------------------- /FW1FontWrapper/CFW1TextRendererInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/FW1FontWrapper/CFW1TextRendererInterface.cpp -------------------------------------------------------------------------------- /FW1FontWrapper/FW1CompileSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/FW1FontWrapper/FW1CompileSettings.h -------------------------------------------------------------------------------- /FW1FontWrapper/FW1FontWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/FW1FontWrapper/FW1FontWrapper.cpp -------------------------------------------------------------------------------- /FW1FontWrapper/FW1FontWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/FW1FontWrapper/FW1FontWrapper.h -------------------------------------------------------------------------------- /FW1FontWrapper/FW1Precompiled.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/FW1FontWrapper/FW1Precompiled.cpp -------------------------------------------------------------------------------- /FW1FontWrapper/FW1Precompiled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/FW1FontWrapper/FW1Precompiled.h -------------------------------------------------------------------------------- /Minhook/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Minhook/include/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Minhook/include/MinHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/Minhook/include/MinHook.h -------------------------------------------------------------------------------- /Minhook/src/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Minhook/src/HDE/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Minhook/src/HDE/hde32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/Minhook/src/HDE/hde32.c -------------------------------------------------------------------------------- /Minhook/src/HDE/hde32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/Minhook/src/HDE/hde32.h -------------------------------------------------------------------------------- /Minhook/src/HDE/hde64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/Minhook/src/HDE/hde64.c -------------------------------------------------------------------------------- /Minhook/src/HDE/hde64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/Minhook/src/HDE/hde64.h -------------------------------------------------------------------------------- /Minhook/src/HDE/pstdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/Minhook/src/HDE/pstdint.h -------------------------------------------------------------------------------- /Minhook/src/HDE/table32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/Minhook/src/HDE/table32.h -------------------------------------------------------------------------------- /Minhook/src/HDE/table64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/Minhook/src/HDE/table64.h -------------------------------------------------------------------------------- /Minhook/src/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/Minhook/src/buffer.c -------------------------------------------------------------------------------- /Minhook/src/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/Minhook/src/buffer.h -------------------------------------------------------------------------------- /Minhook/src/hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/Minhook/src/hook.c -------------------------------------------------------------------------------- /Minhook/src/trampoline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/Minhook/src/trampoline.c -------------------------------------------------------------------------------- /Minhook/src/trampoline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/Minhook/src/trampoline.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/README.md -------------------------------------------------------------------------------- /d3d11hook.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/d3d11hook.sln -------------------------------------------------------------------------------- /d3d11hook.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/d3d11hook.vcxproj -------------------------------------------------------------------------------- /d3d11hook.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/d3d11hook.vcxproj.filters -------------------------------------------------------------------------------- /d3d11hook.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/d3d11hook.vcxproj.user -------------------------------------------------------------------------------- /main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/main.h -------------------------------------------------------------------------------- /renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/renderer.h -------------------------------------------------------------------------------- /universal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/universal.cpp -------------------------------------------------------------------------------- /warframed3d11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrNseven/D3D11-Aimbot-Warframe/HEAD/warframed3d11.jpg --------------------------------------------------------------------------------