gitextract_7bt4u7ou/ ├── CMakeLists.txt ├── Configs/ │ ├── Blank.ini │ ├── Premade_Legit1.ini │ ├── Premade_Legit2.ini │ ├── Premade_Legit3.ini │ ├── Premade_LegitController.ini │ ├── Premade_Recording.ini │ ├── Premade_Triggerbot.ini │ └── Premade_VisualsOnly.ini ├── Core/ │ ├── Camera.hpp │ ├── GlowMode.hpp │ ├── Level.hpp │ ├── LocalPlayer.hpp │ ├── Offsets.hpp │ └── Player.hpp ├── Features/ │ ├── Flickbot.hpp │ ├── Glow.hpp │ ├── Legitbot.hpp │ ├── Misc.hpp │ ├── Radar.hpp │ ├── Ragebot.hpp │ ├── Sense.hpp │ └── Triggerbot.hpp ├── LICENSE ├── Math/ │ ├── FloatVector2D.hpp │ ├── FloatVector3D.hpp │ ├── Matrix.hpp │ ├── QAngle.hpp │ ├── Resolver.hpp │ ├── Vector2D.hpp │ ├── Vector3D.hpp │ └── Vector4D.hpp ├── Overlay/ │ ├── AdvancedGUI.hpp │ ├── Font.hpp │ ├── FontAwesome.cpp │ ├── FontAwesome.h │ ├── GUI.hpp │ ├── Overlay.hpp │ └── Renderer.hpp ├── README.md ├── Utils/ │ ├── Color.hpp │ ├── Config.hpp │ ├── ConfigManager.hpp │ ├── Conversion.hpp │ ├── Features.hpp │ ├── HitboxType.hpp │ ├── IniReader.h │ ├── InputManager.hpp │ ├── InputTypes.hpp │ ├── Memory.hpp │ ├── Themes.hpp │ ├── Weapons.hpp │ └── XDisplay.hpp ├── imgui/ │ ├── LICENSE.txt │ ├── color.h │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imgui_draw.cpp │ ├── imgui_impl_glfw.cpp │ ├── imgui_impl_glfw.h │ ├── imgui_impl_opengl3.cpp │ ├── imgui_impl_opengl3.h │ ├── imgui_impl_opengl3_loader.h │ ├── imgui_internal.h │ ├── imgui_tables.cpp │ ├── imgui_widgets.cpp │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ ├── imstb_truetype.h │ └── misc/ │ ├── README.txt │ ├── cpp/ │ │ ├── README.txt │ │ ├── imgui_stdlib.cpp │ │ └── imgui_stdlib.h │ ├── debuggers/ │ │ ├── README.txt │ │ ├── imgui.gdb │ │ ├── imgui.natstepfilter │ │ ├── imgui.natstepfilter.xml │ │ └── imgui.natvis │ ├── fonts/ │ │ └── binary_to_compressed_c.cpp │ ├── freetype/ │ │ ├── README.md │ │ ├── imgui_freetype.cpp │ │ └── imgui_freetype.h │ └── single_file/ │ └── imgui_single_file.h ├── run.sh └── zap.cpp