├── .gitattributes ├── .gitignore ├── 2.png ├── DX_Show.h ├── Decrypt.asm ├── Game-Data.cc ├── Game-Data.h ├── IMGUI ├── imconfig.h ├── imgui.cpp ├── imgui.h ├── imgui_demo.cpp ├── imgui_draw.cpp ├── imgui_impl_dx11.cpp ├── imgui_impl_dx11.h ├── imgui_impl_dx12.cpp ├── imgui_impl_win32.cpp ├── imgui_impl_win32.h ├── imgui_internal.h ├── imgui_widgets.cpp ├── imstb_rectpack.h ├── imstb_textedit.h └── imstb_truetype.h ├── Memory.h ├── OverlayWindow.h ├── Utils.cpp ├── Utils.h ├── XorStr.h ├── crappy.h └── readme.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonQuestHero/PUBG-ESP/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonQuestHero/PUBG-ESP/HEAD/.gitignore -------------------------------------------------------------------------------- /2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonQuestHero/PUBG-ESP/HEAD/2.png -------------------------------------------------------------------------------- /DX_Show.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonQuestHero/PUBG-ESP/HEAD/DX_Show.h -------------------------------------------------------------------------------- /Decrypt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonQuestHero/PUBG-ESP/HEAD/Decrypt.asm -------------------------------------------------------------------------------- /Game-Data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonQuestHero/PUBG-ESP/HEAD/Game-Data.cc -------------------------------------------------------------------------------- /Game-Data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonQuestHero/PUBG-ESP/HEAD/Game-Data.h -------------------------------------------------------------------------------- /IMGUI/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonQuestHero/PUBG-ESP/HEAD/IMGUI/imconfig.h -------------------------------------------------------------------------------- /IMGUI/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonQuestHero/PUBG-ESP/HEAD/IMGUI/imgui.cpp -------------------------------------------------------------------------------- /IMGUI/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonQuestHero/PUBG-ESP/HEAD/IMGUI/imgui.h -------------------------------------------------------------------------------- /IMGUI/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonQuestHero/PUBG-ESP/HEAD/IMGUI/imgui_demo.cpp -------------------------------------------------------------------------------- /IMGUI/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonQuestHero/PUBG-ESP/HEAD/IMGUI/imgui_draw.cpp -------------------------------------------------------------------------------- /IMGUI/imgui_impl_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonQuestHero/PUBG-ESP/HEAD/IMGUI/imgui_impl_dx11.cpp -------------------------------------------------------------------------------- /IMGUI/imgui_impl_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonQuestHero/PUBG-ESP/HEAD/IMGUI/imgui_impl_dx11.h -------------------------------------------------------------------------------- /IMGUI/imgui_impl_dx12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonQuestHero/PUBG-ESP/HEAD/IMGUI/imgui_impl_dx12.cpp -------------------------------------------------------------------------------- /IMGUI/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonQuestHero/PUBG-ESP/HEAD/IMGUI/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /IMGUI/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonQuestHero/PUBG-ESP/HEAD/IMGUI/imgui_impl_win32.h -------------------------------------------------------------------------------- /IMGUI/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonQuestHero/PUBG-ESP/HEAD/IMGUI/imgui_internal.h -------------------------------------------------------------------------------- /IMGUI/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonQuestHero/PUBG-ESP/HEAD/IMGUI/imgui_widgets.cpp -------------------------------------------------------------------------------- /IMGUI/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonQuestHero/PUBG-ESP/HEAD/IMGUI/imstb_rectpack.h -------------------------------------------------------------------------------- /IMGUI/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonQuestHero/PUBG-ESP/HEAD/IMGUI/imstb_textedit.h -------------------------------------------------------------------------------- /IMGUI/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonQuestHero/PUBG-ESP/HEAD/IMGUI/imstb_truetype.h -------------------------------------------------------------------------------- /Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonQuestHero/PUBG-ESP/HEAD/Memory.h -------------------------------------------------------------------------------- /OverlayWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonQuestHero/PUBG-ESP/HEAD/OverlayWindow.h -------------------------------------------------------------------------------- /Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonQuestHero/PUBG-ESP/HEAD/Utils.cpp -------------------------------------------------------------------------------- /Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonQuestHero/PUBG-ESP/HEAD/Utils.h -------------------------------------------------------------------------------- /XorStr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonQuestHero/PUBG-ESP/HEAD/XorStr.h -------------------------------------------------------------------------------- /crappy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonQuestHero/PUBG-ESP/HEAD/crappy.h -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonQuestHero/PUBG-ESP/HEAD/readme.md --------------------------------------------------------------------------------