gitextract_yzzz2n58/ ├── FortniteCheatSRCUpdateEveryUpdate/ │ ├── DiscordHook/ │ │ ├── Discord.cpp │ │ └── Discord.h │ ├── FortniteCheatSRCUpdateEveryUpdate.filters │ ├── FortniteCheatSRCUpdateEveryUpdate.user │ ├── FortniteCheatSRCUpdateEveryUpdate.vcxproj │ ├── FortniteCheatSRCUpdateEveryUpdate.vcxproj.user │ ├── Header Files/ │ │ ├── Config/ │ │ │ ├── Archivex.h │ │ │ └── Config.h │ │ ├── FortUpdaters/ │ │ │ ├── FortUpdaters.cpp │ │ │ └── FortUpdaters.h │ │ ├── Structs.h │ │ ├── core/ │ │ │ └── core.h │ │ ├── includes.h │ │ ├── menu/ │ │ │ └── menu.h │ │ ├── offsets/ │ │ │ └── offsets.h │ │ ├── settings/ │ │ │ └── settings.h │ │ ├── util/ │ │ │ └── util.h │ │ ├── xor/ │ │ │ └── xor.hpp │ │ └── xorstr.h │ ├── Helper/ │ │ ├── Helper.cpp │ │ └── Helper.h │ ├── Source Files/ │ │ ├── Config/ │ │ │ └── Config.cpp │ │ ├── FortUpdaters/ │ │ │ └── FortUpdaters.cpp │ │ ├── core/ │ │ │ └── core.cpp │ │ ├── menu/ │ │ │ └── menu.cpp │ │ ├── offsets/ │ │ │ └── offsets.cpp │ │ ├── settings/ │ │ │ └── settings.cpp │ │ └── util/ │ │ └── Util.cpp │ ├── dllmain.cpp │ ├── imgui/ │ │ ├── Instructions.txt │ │ ├── LICENSE.txt │ │ ├── imconfig.h │ │ ├── imgui.cpp │ │ ├── imgui.h │ │ ├── imgui_draw.cpp │ │ ├── imgui_impl_dx11.cpp │ │ ├── imgui_impl_dx11.h │ │ ├── imgui_internal.h │ │ ├── imgui_xorstr.h │ │ ├── stb_rect_pack.h │ │ ├── stb_textedit.h │ │ └── stb_truetype.h │ └── spoofinternal.asm ├── FortniteCheatSRCUpdateEveryUpdate.sln ├── LICENSE └── README.md