├── .gitignore ├── LICENSE.txt ├── README.md ├── convar_sm_l4d.h ├── input.h ├── libdasm.c ├── libdasm.h ├── memutils.cpp ├── memutils.h ├── msvc10 ├── recording_helpers.sln ├── recording_helpers.vcxproj └── recording_helpers.vcxproj.filters ├── opcode_tables.h ├── recording_helpers.cpp ├── recording_helpers.h ├── recording_helpers.vdf ├── recording_helpers_l4d1.vdf ├── thirdperson_patch.cpp └── thirdperson_patch.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigySim/recording_helpers/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigySim/recording_helpers/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigySim/recording_helpers/HEAD/README.md -------------------------------------------------------------------------------- /convar_sm_l4d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigySim/recording_helpers/HEAD/convar_sm_l4d.h -------------------------------------------------------------------------------- /input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigySim/recording_helpers/HEAD/input.h -------------------------------------------------------------------------------- /libdasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigySim/recording_helpers/HEAD/libdasm.c -------------------------------------------------------------------------------- /libdasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigySim/recording_helpers/HEAD/libdasm.h -------------------------------------------------------------------------------- /memutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigySim/recording_helpers/HEAD/memutils.cpp -------------------------------------------------------------------------------- /memutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigySim/recording_helpers/HEAD/memutils.h -------------------------------------------------------------------------------- /msvc10/recording_helpers.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigySim/recording_helpers/HEAD/msvc10/recording_helpers.sln -------------------------------------------------------------------------------- /msvc10/recording_helpers.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigySim/recording_helpers/HEAD/msvc10/recording_helpers.vcxproj -------------------------------------------------------------------------------- /msvc10/recording_helpers.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigySim/recording_helpers/HEAD/msvc10/recording_helpers.vcxproj.filters -------------------------------------------------------------------------------- /opcode_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigySim/recording_helpers/HEAD/opcode_tables.h -------------------------------------------------------------------------------- /recording_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigySim/recording_helpers/HEAD/recording_helpers.cpp -------------------------------------------------------------------------------- /recording_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigySim/recording_helpers/HEAD/recording_helpers.h -------------------------------------------------------------------------------- /recording_helpers.vdf: -------------------------------------------------------------------------------- 1 | "Plugin" 2 | { 3 | "file" "addons/recording_helpers" 4 | } 5 | -------------------------------------------------------------------------------- /recording_helpers_l4d1.vdf: -------------------------------------------------------------------------------- 1 | "Plugin" 2 | { 3 | "file" "../left4dead/addons/recording_helpers" 4 | } 5 | -------------------------------------------------------------------------------- /thirdperson_patch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigySim/recording_helpers/HEAD/thirdperson_patch.cpp -------------------------------------------------------------------------------- /thirdperson_patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdigySim/recording_helpers/HEAD/thirdperson_patch.h --------------------------------------------------------------------------------