├── .gitignore ├── LICENSE ├── README.md ├── example └── simple_main.cc ├── include ├── cheat_arch.h ├── cheat_config.h ├── cheat_gencode.h ├── cheat_initial.h ├── cheat_json.h ├── cheat_json_utils.h ├── cheat_llvm.h ├── cheat_parser.h ├── cheat_party.h ├── cheat_platform.h ├── cheat_stdint.h ├── cheat_streamer.h ├── cheat_struct.h └── cheat_utils.h └── src └── lib ├── cheat_gencode.cc ├── cheat_parser.cc └── cheat_streamer.cc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyEngine/cheater/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyEngine/cheater/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # cheater -------------------------------------------------------------------------------- /example/simple_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyEngine/cheater/HEAD/example/simple_main.cc -------------------------------------------------------------------------------- /include/cheat_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyEngine/cheater/HEAD/include/cheat_arch.h -------------------------------------------------------------------------------- /include/cheat_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyEngine/cheater/HEAD/include/cheat_config.h -------------------------------------------------------------------------------- /include/cheat_gencode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyEngine/cheater/HEAD/include/cheat_gencode.h -------------------------------------------------------------------------------- /include/cheat_initial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyEngine/cheater/HEAD/include/cheat_initial.h -------------------------------------------------------------------------------- /include/cheat_json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyEngine/cheater/HEAD/include/cheat_json.h -------------------------------------------------------------------------------- /include/cheat_json_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyEngine/cheater/HEAD/include/cheat_json_utils.h -------------------------------------------------------------------------------- /include/cheat_llvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyEngine/cheater/HEAD/include/cheat_llvm.h -------------------------------------------------------------------------------- /include/cheat_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyEngine/cheater/HEAD/include/cheat_parser.h -------------------------------------------------------------------------------- /include/cheat_party.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyEngine/cheater/HEAD/include/cheat_party.h -------------------------------------------------------------------------------- /include/cheat_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyEngine/cheater/HEAD/include/cheat_platform.h -------------------------------------------------------------------------------- /include/cheat_stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyEngine/cheater/HEAD/include/cheat_stdint.h -------------------------------------------------------------------------------- /include/cheat_streamer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyEngine/cheater/HEAD/include/cheat_streamer.h -------------------------------------------------------------------------------- /include/cheat_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyEngine/cheater/HEAD/include/cheat_struct.h -------------------------------------------------------------------------------- /include/cheat_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyEngine/cheater/HEAD/include/cheat_utils.h -------------------------------------------------------------------------------- /src/lib/cheat_gencode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyEngine/cheater/HEAD/src/lib/cheat_gencode.cc -------------------------------------------------------------------------------- /src/lib/cheat_parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyEngine/cheater/HEAD/src/lib/cheat_parser.cc -------------------------------------------------------------------------------- /src/lib/cheat_streamer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyEngine/cheater/HEAD/src/lib/cheat_streamer.cc --------------------------------------------------------------------------------