├── .gitattributes ├── .gitignore ├── README.md ├── Utils.cpp ├── Utils.h ├── crappy.cpp ├── crappy.h ├── crappy.sln ├── crappy.vcxproj ├── crappy.vcxproj.filters ├── overlay.cpp └── overlay.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huddhudd/crappy-esp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huddhudd/crappy-esp/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # crappy-esp 2 | PUBG Cheat 3 | -------------------------------------------------------------------------------- /Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huddhudd/crappy-esp/HEAD/Utils.cpp -------------------------------------------------------------------------------- /Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huddhudd/crappy-esp/HEAD/Utils.h -------------------------------------------------------------------------------- /crappy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huddhudd/crappy-esp/HEAD/crappy.cpp -------------------------------------------------------------------------------- /crappy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huddhudd/crappy-esp/HEAD/crappy.h -------------------------------------------------------------------------------- /crappy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huddhudd/crappy-esp/HEAD/crappy.sln -------------------------------------------------------------------------------- /crappy.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huddhudd/crappy-esp/HEAD/crappy.vcxproj -------------------------------------------------------------------------------- /crappy.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huddhudd/crappy-esp/HEAD/crappy.vcxproj.filters -------------------------------------------------------------------------------- /overlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huddhudd/crappy-esp/HEAD/overlay.cpp -------------------------------------------------------------------------------- /overlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huddhudd/crappy-esp/HEAD/overlay.h --------------------------------------------------------------------------------