gitextract_bavlp62j/ ├── .gitattributes ├── .gitignore ├── Include/ │ ├── json.hpp │ ├── leechcore.h │ └── vmmdll.h ├── Instructions.md ├── LICENSE ├── Lib/ │ ├── FTD3XX.lib │ ├── leechcore.lib │ └── vmm.lib ├── README.md ├── RustDMA/ │ ├── Config/ │ │ ├── ConfigInstance.h │ │ ├── Misc.h │ │ └── PlayerEspConfig.h │ ├── Esp/ │ │ ├── PlayerEsp.cpp │ │ ├── PlayerEsp.h │ │ ├── Visuals.cpp │ │ └── Visuals.h │ ├── Globals.h │ ├── Graphics/ │ │ ├── Drawing.cpp │ │ ├── Drawing.h │ │ ├── Entities/ │ │ │ ├── Button.cpp │ │ │ ├── Button.h │ │ │ ├── ColourPicker.cpp │ │ │ ├── ColourPicker.h │ │ │ ├── ComboBox.cpp │ │ │ ├── ComboBox.h │ │ │ ├── DropDown.cpp │ │ │ ├── DropDown.h │ │ │ ├── Entity.cpp │ │ │ ├── Entity.h │ │ │ ├── Form.cpp │ │ │ ├── Form.h │ │ │ ├── KeyBind.cpp │ │ │ ├── KeyBind.h │ │ │ ├── Label.cpp │ │ │ ├── Label.h │ │ │ ├── Slider.h │ │ │ ├── Tab.cpp │ │ │ ├── Tab.h │ │ │ ├── TabController.cpp │ │ │ ├── TabController.h │ │ │ ├── TabListBox.cpp │ │ │ ├── TabListBox.h │ │ │ ├── TabListBoxController.cpp │ │ │ ├── TabListBoxController.h │ │ │ ├── TextBox.cpp │ │ │ ├── TextBox.h │ │ │ ├── Toggle.cpp │ │ │ └── Toggle.h │ │ ├── Graphics.h │ │ ├── Start Up/ │ │ │ ├── GUI.cpp │ │ │ ├── GUI.h │ │ │ ├── Init.cpp │ │ │ └── Init.h │ │ └── Utility/ │ │ ├── Animation.cpp │ │ ├── Animation.h │ │ ├── Colour.cpp │ │ ├── Colour.h │ │ ├── Font.cpp │ │ └── Font.h │ ├── Main.cpp │ ├── Memory/ │ │ ├── Memory.cpp │ │ └── Memory.h │ ├── Misc/ │ │ ├── CheatFunction.cpp │ │ ├── CheatFunction.h │ │ ├── Input.cpp │ │ ├── Input.h │ │ ├── Pch/ │ │ │ ├── Pch.cpp │ │ │ └── Pch.h │ │ ├── Vector.cpp │ │ └── Vector.h │ ├── RustDMA.vcxproj │ ├── RustDMA.vcxproj.filters │ ├── SDK/ │ │ ├── BaseMovement.cpp │ │ ├── BaseMovement.h │ │ ├── BaseNetworkable.cpp │ │ ├── BaseNetworkable.h │ │ ├── BasePlayer.cpp │ │ ├── BasePlayer.h │ │ ├── BaseProjectile.cpp │ │ ├── BaseProjectile.h │ │ ├── ConsoleSystem.cpp │ │ ├── ConsoleSystem.h │ │ ├── ConvarAdmin.cpp │ │ ├── ConvarAdmin.h │ │ ├── ConvarGraphics.cpp │ │ ├── ConvarGraphics.h │ │ ├── Item.cpp │ │ ├── Item.h │ │ ├── LocalPlayer.cpp │ │ ├── LocalPlayer.h │ │ ├── MainCamera.cpp │ │ ├── MainCamera.h │ │ ├── OcclusionCulling.cpp │ │ ├── OcclusionCulling.h │ │ ├── TODSky.cpp │ │ └── TODSky.h │ ├── Security/ │ │ └── XorStr.h │ └── mmap.txt ├── RustDMA.sln └── Updating.md