├── .gitattributes ├── .gitignore ├── CheatIt.sln ├── CheatIt ├── CheatIt.vcxproj ├── CheatIt.vcxproj.filters ├── CheatIt.vcxproj.user ├── cheat.cpp ├── cheat.h ├── engine.cpp ├── engine.h ├── main.cpp ├── utils.cpp └── utils.h └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/CheatIt/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vs 2 | bin 3 | intermediate -------------------------------------------------------------------------------- /CheatIt.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/CheatIt/HEAD/CheatIt.sln -------------------------------------------------------------------------------- /CheatIt/CheatIt.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/CheatIt/HEAD/CheatIt/CheatIt.vcxproj -------------------------------------------------------------------------------- /CheatIt/CheatIt.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/CheatIt/HEAD/CheatIt/CheatIt.vcxproj.filters -------------------------------------------------------------------------------- /CheatIt/CheatIt.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/CheatIt/HEAD/CheatIt/CheatIt.vcxproj.user -------------------------------------------------------------------------------- /CheatIt/cheat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/CheatIt/HEAD/CheatIt/cheat.cpp -------------------------------------------------------------------------------- /CheatIt/cheat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/CheatIt/HEAD/CheatIt/cheat.h -------------------------------------------------------------------------------- /CheatIt/engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/CheatIt/HEAD/CheatIt/engine.cpp -------------------------------------------------------------------------------- /CheatIt/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/CheatIt/HEAD/CheatIt/engine.h -------------------------------------------------------------------------------- /CheatIt/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/CheatIt/HEAD/CheatIt/main.cpp -------------------------------------------------------------------------------- /CheatIt/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/CheatIt/HEAD/CheatIt/utils.cpp -------------------------------------------------------------------------------- /CheatIt/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/CheatIt/HEAD/CheatIt/utils.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/CheatIt/HEAD/README.md --------------------------------------------------------------------------------