├── .gitignore ├── AimBot.cpp ├── Color.cpp ├── ConfigLoader.cpp ├── FloatVector2D.cpp ├── FloatVector3D.cpp ├── Highlight.cpp ├── HighlightList.cpp ├── Level.cpp ├── LocalPlayer.cpp ├── Main.cpp ├── Makefile ├── Memory.cpp ├── NoRecoil.cpp ├── Offsets.cpp ├── Player.cpp ├── README.md ├── Sense.cpp ├── TriggerBot.cpp ├── Util.cpp ├── WeaponId.cpp ├── XDisplay.cpp ├── body_styles.txt ├── border_styles.txt ├── grinder.ini ├── includes.hpp └── key_codes.txt /.gitignore: -------------------------------------------------------------------------------- 1 | /.vscode 2 | Main 3 | a.out 4 | -------------------------------------------------------------------------------- /AimBot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturzxc/grinder/HEAD/AimBot.cpp -------------------------------------------------------------------------------- /Color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturzxc/grinder/HEAD/Color.cpp -------------------------------------------------------------------------------- /ConfigLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturzxc/grinder/HEAD/ConfigLoader.cpp -------------------------------------------------------------------------------- /FloatVector2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturzxc/grinder/HEAD/FloatVector2D.cpp -------------------------------------------------------------------------------- /FloatVector3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturzxc/grinder/HEAD/FloatVector3D.cpp -------------------------------------------------------------------------------- /Highlight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturzxc/grinder/HEAD/Highlight.cpp -------------------------------------------------------------------------------- /HighlightList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturzxc/grinder/HEAD/HighlightList.cpp -------------------------------------------------------------------------------- /Level.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturzxc/grinder/HEAD/Level.cpp -------------------------------------------------------------------------------- /LocalPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturzxc/grinder/HEAD/LocalPlayer.cpp -------------------------------------------------------------------------------- /Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturzxc/grinder/HEAD/Main.cpp -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturzxc/grinder/HEAD/Makefile -------------------------------------------------------------------------------- /Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturzxc/grinder/HEAD/Memory.cpp -------------------------------------------------------------------------------- /NoRecoil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturzxc/grinder/HEAD/NoRecoil.cpp -------------------------------------------------------------------------------- /Offsets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturzxc/grinder/HEAD/Offsets.cpp -------------------------------------------------------------------------------- /Player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturzxc/grinder/HEAD/Player.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturzxc/grinder/HEAD/README.md -------------------------------------------------------------------------------- /Sense.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturzxc/grinder/HEAD/Sense.cpp -------------------------------------------------------------------------------- /TriggerBot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturzxc/grinder/HEAD/TriggerBot.cpp -------------------------------------------------------------------------------- /Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturzxc/grinder/HEAD/Util.cpp -------------------------------------------------------------------------------- /WeaponId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturzxc/grinder/HEAD/WeaponId.cpp -------------------------------------------------------------------------------- /XDisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturzxc/grinder/HEAD/XDisplay.cpp -------------------------------------------------------------------------------- /body_styles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturzxc/grinder/HEAD/body_styles.txt -------------------------------------------------------------------------------- /border_styles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturzxc/grinder/HEAD/border_styles.txt -------------------------------------------------------------------------------- /grinder.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturzxc/grinder/HEAD/grinder.ini -------------------------------------------------------------------------------- /includes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturzxc/grinder/HEAD/includes.hpp -------------------------------------------------------------------------------- /key_codes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturzxc/grinder/HEAD/key_codes.txt --------------------------------------------------------------------------------