├── .gitattributes ├── .gitignore ├── 00045-3601538189.ico ├── App.config ├── Extensions.cs ├── Forms ├── CustomizePathsForm.Designer.cs ├── CustomizePathsForm.cs ├── CustomizePathsForm.resx ├── FirstTimeSetup.Designer.cs ├── FirstTimeSetup.cs ├── FirstTimeSetup.resx ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── GetInput.Designer.cs ├── GetInput.cs ├── GetInput.resx ├── WindowsStoreAppSelector.Designer.cs ├── WindowsStoreAppSelector.cs └── WindowsStoreAppSelector.resx ├── Functions.cs ├── ILMergeOrder.txt ├── LICENSE.md ├── Program.cs ├── Prompt.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── README.md ├── ReShade Centralized.csproj ├── ReShade Centralized.sln ├── ReShade Centralized.vcxproj ├── ReShade Centralized.vcxproj.filters ├── ReShade_Template_Example.ini ├── Source.cpp ├── SymbolicLink.cs └── app.manifest /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OopyDoopy/ReShade-Centralized/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OopyDoopy/ReShade-Centralized/HEAD/.gitignore -------------------------------------------------------------------------------- /00045-3601538189.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OopyDoopy/ReShade-Centralized/HEAD/00045-3601538189.ico -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OopyDoopy/ReShade-Centralized/HEAD/App.config -------------------------------------------------------------------------------- /Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OopyDoopy/ReShade-Centralized/HEAD/Extensions.cs -------------------------------------------------------------------------------- /Forms/CustomizePathsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OopyDoopy/ReShade-Centralized/HEAD/Forms/CustomizePathsForm.Designer.cs -------------------------------------------------------------------------------- /Forms/CustomizePathsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OopyDoopy/ReShade-Centralized/HEAD/Forms/CustomizePathsForm.cs -------------------------------------------------------------------------------- /Forms/CustomizePathsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OopyDoopy/ReShade-Centralized/HEAD/Forms/CustomizePathsForm.resx -------------------------------------------------------------------------------- /Forms/FirstTimeSetup.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OopyDoopy/ReShade-Centralized/HEAD/Forms/FirstTimeSetup.Designer.cs -------------------------------------------------------------------------------- /Forms/FirstTimeSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OopyDoopy/ReShade-Centralized/HEAD/Forms/FirstTimeSetup.cs -------------------------------------------------------------------------------- /Forms/FirstTimeSetup.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OopyDoopy/ReShade-Centralized/HEAD/Forms/FirstTimeSetup.resx -------------------------------------------------------------------------------- /Forms/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OopyDoopy/ReShade-Centralized/HEAD/Forms/Form1.Designer.cs -------------------------------------------------------------------------------- /Forms/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OopyDoopy/ReShade-Centralized/HEAD/Forms/Form1.cs -------------------------------------------------------------------------------- /Forms/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OopyDoopy/ReShade-Centralized/HEAD/Forms/Form1.resx -------------------------------------------------------------------------------- /Forms/GetInput.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OopyDoopy/ReShade-Centralized/HEAD/Forms/GetInput.Designer.cs -------------------------------------------------------------------------------- /Forms/GetInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OopyDoopy/ReShade-Centralized/HEAD/Forms/GetInput.cs -------------------------------------------------------------------------------- /Forms/GetInput.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OopyDoopy/ReShade-Centralized/HEAD/Forms/GetInput.resx -------------------------------------------------------------------------------- /Forms/WindowsStoreAppSelector.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OopyDoopy/ReShade-Centralized/HEAD/Forms/WindowsStoreAppSelector.Designer.cs -------------------------------------------------------------------------------- /Forms/WindowsStoreAppSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OopyDoopy/ReShade-Centralized/HEAD/Forms/WindowsStoreAppSelector.cs -------------------------------------------------------------------------------- /Forms/WindowsStoreAppSelector.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OopyDoopy/ReShade-Centralized/HEAD/Forms/WindowsStoreAppSelector.resx -------------------------------------------------------------------------------- /Functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OopyDoopy/ReShade-Centralized/HEAD/Functions.cs -------------------------------------------------------------------------------- /ILMergeOrder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OopyDoopy/ReShade-Centralized/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OopyDoopy/ReShade-Centralized/HEAD/Program.cs -------------------------------------------------------------------------------- /Prompt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OopyDoopy/ReShade-Centralized/HEAD/Prompt.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OopyDoopy/ReShade-Centralized/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OopyDoopy/ReShade-Centralized/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OopyDoopy/ReShade-Centralized/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OopyDoopy/ReShade-Centralized/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OopyDoopy/ReShade-Centralized/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OopyDoopy/ReShade-Centralized/HEAD/README.md -------------------------------------------------------------------------------- /ReShade Centralized.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OopyDoopy/ReShade-Centralized/HEAD/ReShade Centralized.csproj -------------------------------------------------------------------------------- /ReShade Centralized.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OopyDoopy/ReShade-Centralized/HEAD/ReShade Centralized.sln -------------------------------------------------------------------------------- /ReShade Centralized.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OopyDoopy/ReShade-Centralized/HEAD/ReShade Centralized.vcxproj -------------------------------------------------------------------------------- /ReShade Centralized.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OopyDoopy/ReShade-Centralized/HEAD/ReShade Centralized.vcxproj.filters -------------------------------------------------------------------------------- /ReShade_Template_Example.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OopyDoopy/ReShade-Centralized/HEAD/ReShade_Template_Example.ini -------------------------------------------------------------------------------- /Source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OopyDoopy/ReShade-Centralized/HEAD/Source.cpp -------------------------------------------------------------------------------- /SymbolicLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OopyDoopy/ReShade-Centralized/HEAD/SymbolicLink.cs -------------------------------------------------------------------------------- /app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OopyDoopy/ReShade-Centralized/HEAD/app.manifest --------------------------------------------------------------------------------