├── .gitignore ├── LICENSE ├── NFSU2ExtraOptions ├── CodeCaves.h ├── ExtraOptionsStuff.h ├── GlobalVariables.h ├── Helpers.h ├── HotkeyStuff.h ├── InGameFunctions.h ├── LanguageSelectScreen.h ├── NFSU2ExtraOptions.filters ├── NFSU2ExtraOptions.rc ├── NFSU2ExtraOptions.sln ├── NFSU2ExtraOptions.vcxproj ├── Player.h ├── SplashScreen.h ├── UIQRTrackSelect.h ├── dllmain.cpp ├── resource.h ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── NFSU2ExtraOptionsSettings.ini ├── README.md └── includes ├── CPatch.h ├── IniReader.h ├── ini_parser.hpp ├── injector ├── assembly.hpp ├── calling.hpp ├── gvm │ ├── gvm.hpp │ └── translator.hpp ├── hooking.hpp ├── injector.hpp └── utility.hpp └── stdafx.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSU2ExOpts/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSU2ExOpts/HEAD/LICENSE -------------------------------------------------------------------------------- /NFSU2ExtraOptions/CodeCaves.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSU2ExOpts/HEAD/NFSU2ExtraOptions/CodeCaves.h -------------------------------------------------------------------------------- /NFSU2ExtraOptions/ExtraOptionsStuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSU2ExOpts/HEAD/NFSU2ExtraOptions/ExtraOptionsStuff.h -------------------------------------------------------------------------------- /NFSU2ExtraOptions/GlobalVariables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSU2ExOpts/HEAD/NFSU2ExtraOptions/GlobalVariables.h -------------------------------------------------------------------------------- /NFSU2ExtraOptions/Helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSU2ExOpts/HEAD/NFSU2ExtraOptions/Helpers.h -------------------------------------------------------------------------------- /NFSU2ExtraOptions/HotkeyStuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSU2ExOpts/HEAD/NFSU2ExtraOptions/HotkeyStuff.h -------------------------------------------------------------------------------- /NFSU2ExtraOptions/InGameFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSU2ExOpts/HEAD/NFSU2ExtraOptions/InGameFunctions.h -------------------------------------------------------------------------------- /NFSU2ExtraOptions/LanguageSelectScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSU2ExOpts/HEAD/NFSU2ExtraOptions/LanguageSelectScreen.h -------------------------------------------------------------------------------- /NFSU2ExtraOptions/NFSU2ExtraOptions.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSU2ExOpts/HEAD/NFSU2ExtraOptions/NFSU2ExtraOptions.filters -------------------------------------------------------------------------------- /NFSU2ExtraOptions/NFSU2ExtraOptions.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSU2ExOpts/HEAD/NFSU2ExtraOptions/NFSU2ExtraOptions.rc -------------------------------------------------------------------------------- /NFSU2ExtraOptions/NFSU2ExtraOptions.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSU2ExOpts/HEAD/NFSU2ExtraOptions/NFSU2ExtraOptions.sln -------------------------------------------------------------------------------- /NFSU2ExtraOptions/NFSU2ExtraOptions.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSU2ExOpts/HEAD/NFSU2ExtraOptions/NFSU2ExtraOptions.vcxproj -------------------------------------------------------------------------------- /NFSU2ExtraOptions/Player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSU2ExOpts/HEAD/NFSU2ExtraOptions/Player.h -------------------------------------------------------------------------------- /NFSU2ExtraOptions/SplashScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSU2ExOpts/HEAD/NFSU2ExtraOptions/SplashScreen.h -------------------------------------------------------------------------------- /NFSU2ExtraOptions/UIQRTrackSelect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSU2ExOpts/HEAD/NFSU2ExtraOptions/UIQRTrackSelect.h -------------------------------------------------------------------------------- /NFSU2ExtraOptions/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSU2ExOpts/HEAD/NFSU2ExtraOptions/dllmain.cpp -------------------------------------------------------------------------------- /NFSU2ExtraOptions/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSU2ExOpts/HEAD/NFSU2ExtraOptions/resource.h -------------------------------------------------------------------------------- /NFSU2ExtraOptions/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /NFSU2ExtraOptions/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSU2ExOpts/HEAD/NFSU2ExtraOptions/stdafx.h -------------------------------------------------------------------------------- /NFSU2ExtraOptions/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSU2ExOpts/HEAD/NFSU2ExtraOptions/targetver.h -------------------------------------------------------------------------------- /NFSU2ExtraOptionsSettings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSU2ExOpts/HEAD/NFSU2ExtraOptionsSettings.ini -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSU2ExOpts/HEAD/README.md -------------------------------------------------------------------------------- /includes/CPatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSU2ExOpts/HEAD/includes/CPatch.h -------------------------------------------------------------------------------- /includes/IniReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSU2ExOpts/HEAD/includes/IniReader.h -------------------------------------------------------------------------------- /includes/ini_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSU2ExOpts/HEAD/includes/ini_parser.hpp -------------------------------------------------------------------------------- /includes/injector/assembly.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSU2ExOpts/HEAD/includes/injector/assembly.hpp -------------------------------------------------------------------------------- /includes/injector/calling.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSU2ExOpts/HEAD/includes/injector/calling.hpp -------------------------------------------------------------------------------- /includes/injector/gvm/gvm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSU2ExOpts/HEAD/includes/injector/gvm/gvm.hpp -------------------------------------------------------------------------------- /includes/injector/gvm/translator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSU2ExOpts/HEAD/includes/injector/gvm/translator.hpp -------------------------------------------------------------------------------- /includes/injector/hooking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSU2ExOpts/HEAD/includes/injector/hooking.hpp -------------------------------------------------------------------------------- /includes/injector/injector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSU2ExOpts/HEAD/includes/injector/injector.hpp -------------------------------------------------------------------------------- /includes/injector/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSU2ExOpts/HEAD/includes/injector/utility.hpp -------------------------------------------------------------------------------- /includes/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExOptsTeam/NFSU2ExOpts/HEAD/includes/stdafx.h --------------------------------------------------------------------------------