├── .gitignore ├── .gitmodules ├── CustomCameraVPlus.ini ├── CustomCameraVPlus.sln ├── CustomCameraVPlus.vcxproj ├── Install.txt ├── ManualTransmissionApi.cpp ├── ManualTransmissionApi.h ├── changelog.txt ├── inc ├── enums.h ├── fmt-8.0.0 │ ├── .clang-format │ ├── CMakeLists.txt │ ├── include │ │ └── fmt │ │ │ ├── args.h │ │ │ ├── chrono.h │ │ │ ├── color.h │ │ │ ├── compile.h │ │ │ ├── core.h │ │ │ ├── format-inl.h │ │ │ ├── format.h │ │ │ ├── locale.h │ │ │ ├── os.h │ │ │ ├── ostream.h │ │ │ ├── printf.h │ │ │ ├── ranges.h │ │ │ └── xchar.h │ └── src │ │ ├── fmt.cc │ │ ├── format.cc │ │ └── os.cc ├── keyboard.cpp ├── keyboard.h ├── main.h ├── nativeCaller.h ├── natives.h └── types.h ├── lib └── ScriptHookV.lib ├── main.cpp ├── readme.md ├── script.cpp ├── script.h ├── utils.cpp └── utils.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraVPlus/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraVPlus/HEAD/.gitmodules -------------------------------------------------------------------------------- /CustomCameraVPlus.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraVPlus/HEAD/CustomCameraVPlus.ini -------------------------------------------------------------------------------- /CustomCameraVPlus.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraVPlus/HEAD/CustomCameraVPlus.sln -------------------------------------------------------------------------------- /CustomCameraVPlus.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraVPlus/HEAD/CustomCameraVPlus.vcxproj -------------------------------------------------------------------------------- /Install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraVPlus/HEAD/Install.txt -------------------------------------------------------------------------------- /ManualTransmissionApi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraVPlus/HEAD/ManualTransmissionApi.cpp -------------------------------------------------------------------------------- /ManualTransmissionApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraVPlus/HEAD/ManualTransmissionApi.h -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraVPlus/HEAD/changelog.txt -------------------------------------------------------------------------------- /inc/enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraVPlus/HEAD/inc/enums.h -------------------------------------------------------------------------------- /inc/fmt-8.0.0/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraVPlus/HEAD/inc/fmt-8.0.0/.clang-format -------------------------------------------------------------------------------- /inc/fmt-8.0.0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraVPlus/HEAD/inc/fmt-8.0.0/CMakeLists.txt -------------------------------------------------------------------------------- /inc/fmt-8.0.0/include/fmt/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraVPlus/HEAD/inc/fmt-8.0.0/include/fmt/args.h -------------------------------------------------------------------------------- /inc/fmt-8.0.0/include/fmt/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraVPlus/HEAD/inc/fmt-8.0.0/include/fmt/chrono.h -------------------------------------------------------------------------------- /inc/fmt-8.0.0/include/fmt/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraVPlus/HEAD/inc/fmt-8.0.0/include/fmt/color.h -------------------------------------------------------------------------------- /inc/fmt-8.0.0/include/fmt/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraVPlus/HEAD/inc/fmt-8.0.0/include/fmt/compile.h -------------------------------------------------------------------------------- /inc/fmt-8.0.0/include/fmt/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraVPlus/HEAD/inc/fmt-8.0.0/include/fmt/core.h -------------------------------------------------------------------------------- /inc/fmt-8.0.0/include/fmt/format-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraVPlus/HEAD/inc/fmt-8.0.0/include/fmt/format-inl.h -------------------------------------------------------------------------------- /inc/fmt-8.0.0/include/fmt/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraVPlus/HEAD/inc/fmt-8.0.0/include/fmt/format.h -------------------------------------------------------------------------------- /inc/fmt-8.0.0/include/fmt/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraVPlus/HEAD/inc/fmt-8.0.0/include/fmt/locale.h -------------------------------------------------------------------------------- /inc/fmt-8.0.0/include/fmt/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraVPlus/HEAD/inc/fmt-8.0.0/include/fmt/os.h -------------------------------------------------------------------------------- /inc/fmt-8.0.0/include/fmt/ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraVPlus/HEAD/inc/fmt-8.0.0/include/fmt/ostream.h -------------------------------------------------------------------------------- /inc/fmt-8.0.0/include/fmt/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraVPlus/HEAD/inc/fmt-8.0.0/include/fmt/printf.h -------------------------------------------------------------------------------- /inc/fmt-8.0.0/include/fmt/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraVPlus/HEAD/inc/fmt-8.0.0/include/fmt/ranges.h -------------------------------------------------------------------------------- /inc/fmt-8.0.0/include/fmt/xchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraVPlus/HEAD/inc/fmt-8.0.0/include/fmt/xchar.h -------------------------------------------------------------------------------- /inc/fmt-8.0.0/src/fmt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraVPlus/HEAD/inc/fmt-8.0.0/src/fmt.cc -------------------------------------------------------------------------------- /inc/fmt-8.0.0/src/format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraVPlus/HEAD/inc/fmt-8.0.0/src/format.cc -------------------------------------------------------------------------------- /inc/fmt-8.0.0/src/os.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraVPlus/HEAD/inc/fmt-8.0.0/src/os.cc -------------------------------------------------------------------------------- /inc/keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraVPlus/HEAD/inc/keyboard.cpp -------------------------------------------------------------------------------- /inc/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraVPlus/HEAD/inc/keyboard.h -------------------------------------------------------------------------------- /inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraVPlus/HEAD/inc/main.h -------------------------------------------------------------------------------- /inc/nativeCaller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraVPlus/HEAD/inc/nativeCaller.h -------------------------------------------------------------------------------- /inc/natives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraVPlus/HEAD/inc/natives.h -------------------------------------------------------------------------------- /inc/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraVPlus/HEAD/inc/types.h -------------------------------------------------------------------------------- /lib/ScriptHookV.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraVPlus/HEAD/lib/ScriptHookV.lib -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraVPlus/HEAD/main.cpp -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraVPlus/HEAD/readme.md -------------------------------------------------------------------------------- /script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraVPlus/HEAD/script.cpp -------------------------------------------------------------------------------- /script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraVPlus/HEAD/script.h -------------------------------------------------------------------------------- /utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraVPlus/HEAD/utils.cpp -------------------------------------------------------------------------------- /utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rbn3D/CustomCameraVPlus/HEAD/utils.h --------------------------------------------------------------------------------