├── COPYING ├── Config.mak ├── Makefile ├── README.md ├── aa_cs.nn ├── ann.cpp ├── ann.h ├── antiaim.cpp ├── antiaim.h ├── dllapi.cpp ├── engine_api.cpp ├── h_export.cpp ├── meta_api.cpp ├── msvc ├── .cvsignore ├── antiaim_mm.def ├── antiaim_mm.sln └── antiaim_mm.vcproj ├── sdk_util.cpp └── train ├── CMakeLists.txt └── cstrike.cpp /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhzeba/antiaim/HEAD/COPYING -------------------------------------------------------------------------------- /Config.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhzeba/antiaim/HEAD/Config.mak -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhzeba/antiaim/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Please see https://github.com/hzeba/antiaim/wiki for details. 2 | -------------------------------------------------------------------------------- /aa_cs.nn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhzeba/antiaim/HEAD/aa_cs.nn -------------------------------------------------------------------------------- /ann.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhzeba/antiaim/HEAD/ann.cpp -------------------------------------------------------------------------------- /ann.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhzeba/antiaim/HEAD/ann.h -------------------------------------------------------------------------------- /antiaim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhzeba/antiaim/HEAD/antiaim.cpp -------------------------------------------------------------------------------- /antiaim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhzeba/antiaim/HEAD/antiaim.h -------------------------------------------------------------------------------- /dllapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhzeba/antiaim/HEAD/dllapi.cpp -------------------------------------------------------------------------------- /engine_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhzeba/antiaim/HEAD/engine_api.cpp -------------------------------------------------------------------------------- /h_export.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhzeba/antiaim/HEAD/h_export.cpp -------------------------------------------------------------------------------- /meta_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhzeba/antiaim/HEAD/meta_api.cpp -------------------------------------------------------------------------------- /msvc/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhzeba/antiaim/HEAD/msvc/.cvsignore -------------------------------------------------------------------------------- /msvc/antiaim_mm.def: -------------------------------------------------------------------------------- 1 | LIBRARY antiaim_mm 2 | EXPORTS 3 | GiveFnptrsToDll @1 4 | SECTIONS 5 | .data READ WRITE 6 | -------------------------------------------------------------------------------- /msvc/antiaim_mm.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhzeba/antiaim/HEAD/msvc/antiaim_mm.sln -------------------------------------------------------------------------------- /msvc/antiaim_mm.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhzeba/antiaim/HEAD/msvc/antiaim_mm.vcproj -------------------------------------------------------------------------------- /sdk_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhzeba/antiaim/HEAD/sdk_util.cpp -------------------------------------------------------------------------------- /train/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhzeba/antiaim/HEAD/train/CMakeLists.txt -------------------------------------------------------------------------------- /train/cstrike.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhzeba/antiaim/HEAD/train/cstrike.cpp --------------------------------------------------------------------------------