├── .gitignore ├── CRZAimbot.sln ├── CRZAimbot ├── CRZAimbot.vcxproj ├── CRZAimbot.vcxproj.filters ├── Config.h ├── Driver.cpp ├── Driver.h ├── Entity.cpp ├── Entity.h ├── Main.cpp ├── Main.h ├── Math.cpp ├── Math.h ├── MemProtector.cpp ├── MemProtector.h ├── Offsets.h └── Vector.h └── CRZEFI ├── Makefile ├── definitions.h ├── dummy.h └── main.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCruZ/Direct-EFI-Apex-Cheat/HEAD/.gitignore -------------------------------------------------------------------------------- /CRZAimbot.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCruZ/Direct-EFI-Apex-Cheat/HEAD/CRZAimbot.sln -------------------------------------------------------------------------------- /CRZAimbot/CRZAimbot.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCruZ/Direct-EFI-Apex-Cheat/HEAD/CRZAimbot/CRZAimbot.vcxproj -------------------------------------------------------------------------------- /CRZAimbot/CRZAimbot.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCruZ/Direct-EFI-Apex-Cheat/HEAD/CRZAimbot/CRZAimbot.vcxproj.filters -------------------------------------------------------------------------------- /CRZAimbot/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCruZ/Direct-EFI-Apex-Cheat/HEAD/CRZAimbot/Config.h -------------------------------------------------------------------------------- /CRZAimbot/Driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCruZ/Direct-EFI-Apex-Cheat/HEAD/CRZAimbot/Driver.cpp -------------------------------------------------------------------------------- /CRZAimbot/Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCruZ/Direct-EFI-Apex-Cheat/HEAD/CRZAimbot/Driver.h -------------------------------------------------------------------------------- /CRZAimbot/Entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCruZ/Direct-EFI-Apex-Cheat/HEAD/CRZAimbot/Entity.cpp -------------------------------------------------------------------------------- /CRZAimbot/Entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCruZ/Direct-EFI-Apex-Cheat/HEAD/CRZAimbot/Entity.h -------------------------------------------------------------------------------- /CRZAimbot/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCruZ/Direct-EFI-Apex-Cheat/HEAD/CRZAimbot/Main.cpp -------------------------------------------------------------------------------- /CRZAimbot/Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCruZ/Direct-EFI-Apex-Cheat/HEAD/CRZAimbot/Main.h -------------------------------------------------------------------------------- /CRZAimbot/Math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCruZ/Direct-EFI-Apex-Cheat/HEAD/CRZAimbot/Math.cpp -------------------------------------------------------------------------------- /CRZAimbot/Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCruZ/Direct-EFI-Apex-Cheat/HEAD/CRZAimbot/Math.h -------------------------------------------------------------------------------- /CRZAimbot/MemProtector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCruZ/Direct-EFI-Apex-Cheat/HEAD/CRZAimbot/MemProtector.cpp -------------------------------------------------------------------------------- /CRZAimbot/MemProtector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCruZ/Direct-EFI-Apex-Cheat/HEAD/CRZAimbot/MemProtector.h -------------------------------------------------------------------------------- /CRZAimbot/Offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCruZ/Direct-EFI-Apex-Cheat/HEAD/CRZAimbot/Offsets.h -------------------------------------------------------------------------------- /CRZAimbot/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCruZ/Direct-EFI-Apex-Cheat/HEAD/CRZAimbot/Vector.h -------------------------------------------------------------------------------- /CRZEFI/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCruZ/Direct-EFI-Apex-Cheat/HEAD/CRZEFI/Makefile -------------------------------------------------------------------------------- /CRZEFI/definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCruZ/Direct-EFI-Apex-Cheat/HEAD/CRZEFI/definitions.h -------------------------------------------------------------------------------- /CRZEFI/dummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCruZ/Direct-EFI-Apex-Cheat/HEAD/CRZEFI/dummy.h -------------------------------------------------------------------------------- /CRZEFI/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCruZ/Direct-EFI-Apex-Cheat/HEAD/CRZEFI/main.c --------------------------------------------------------------------------------