├── .gitignore ├── HelperLib ├── Extensions.cs ├── HelperLib.cs ├── HelperLib.csproj ├── HelperLib.sln ├── ProcessWaiter │ ├── ProcessTools.cs │ ├── ProcessWaiter.cs │ ├── ProcessWaiter.designer.cs │ ├── ProcessWaiter.resx │ ├── ProcessWaiterControl.cs │ ├── ProcessWaiterControl.designer.cs │ └── ProcessWaiterControl.resx ├── Properties │ └── AssemblyInfo.cs ├── Steam.cs ├── Verifier.cs └── packages.config ├── HelperLibTests ├── HelperLibTests.cs ├── HelperLibTests.csproj └── Properties │ └── AssemblyInfo.cs ├── INFO.rtf ├── LICENSE ├── LICENSE_page ├── Plugin Readme.md ├── README.md ├── Translations.iss ├── _Common ├── Header.iss └── hf.bmp ├── banner.bmp ├── components.iss ├── icon.ico └── patch.iss /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManlyMarco/RG-HF_Patch/HEAD/.gitignore -------------------------------------------------------------------------------- /HelperLib/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManlyMarco/RG-HF_Patch/HEAD/HelperLib/Extensions.cs -------------------------------------------------------------------------------- /HelperLib/HelperLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManlyMarco/RG-HF_Patch/HEAD/HelperLib/HelperLib.cs -------------------------------------------------------------------------------- /HelperLib/HelperLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManlyMarco/RG-HF_Patch/HEAD/HelperLib/HelperLib.csproj -------------------------------------------------------------------------------- /HelperLib/HelperLib.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManlyMarco/RG-HF_Patch/HEAD/HelperLib/HelperLib.sln -------------------------------------------------------------------------------- /HelperLib/ProcessWaiter/ProcessTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManlyMarco/RG-HF_Patch/HEAD/HelperLib/ProcessWaiter/ProcessTools.cs -------------------------------------------------------------------------------- /HelperLib/ProcessWaiter/ProcessWaiter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManlyMarco/RG-HF_Patch/HEAD/HelperLib/ProcessWaiter/ProcessWaiter.cs -------------------------------------------------------------------------------- /HelperLib/ProcessWaiter/ProcessWaiter.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManlyMarco/RG-HF_Patch/HEAD/HelperLib/ProcessWaiter/ProcessWaiter.designer.cs -------------------------------------------------------------------------------- /HelperLib/ProcessWaiter/ProcessWaiter.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManlyMarco/RG-HF_Patch/HEAD/HelperLib/ProcessWaiter/ProcessWaiter.resx -------------------------------------------------------------------------------- /HelperLib/ProcessWaiter/ProcessWaiterControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManlyMarco/RG-HF_Patch/HEAD/HelperLib/ProcessWaiter/ProcessWaiterControl.cs -------------------------------------------------------------------------------- /HelperLib/ProcessWaiter/ProcessWaiterControl.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManlyMarco/RG-HF_Patch/HEAD/HelperLib/ProcessWaiter/ProcessWaiterControl.designer.cs -------------------------------------------------------------------------------- /HelperLib/ProcessWaiter/ProcessWaiterControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManlyMarco/RG-HF_Patch/HEAD/HelperLib/ProcessWaiter/ProcessWaiterControl.resx -------------------------------------------------------------------------------- /HelperLib/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManlyMarco/RG-HF_Patch/HEAD/HelperLib/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /HelperLib/Steam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManlyMarco/RG-HF_Patch/HEAD/HelperLib/Steam.cs -------------------------------------------------------------------------------- /HelperLib/Verifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManlyMarco/RG-HF_Patch/HEAD/HelperLib/Verifier.cs -------------------------------------------------------------------------------- /HelperLib/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManlyMarco/RG-HF_Patch/HEAD/HelperLib/packages.config -------------------------------------------------------------------------------- /HelperLibTests/HelperLibTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManlyMarco/RG-HF_Patch/HEAD/HelperLibTests/HelperLibTests.cs -------------------------------------------------------------------------------- /HelperLibTests/HelperLibTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManlyMarco/RG-HF_Patch/HEAD/HelperLibTests/HelperLibTests.csproj -------------------------------------------------------------------------------- /HelperLibTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManlyMarco/RG-HF_Patch/HEAD/HelperLibTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /INFO.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManlyMarco/RG-HF_Patch/HEAD/INFO.rtf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManlyMarco/RG-HF_Patch/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE_page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManlyMarco/RG-HF_Patch/HEAD/LICENSE_page -------------------------------------------------------------------------------- /Plugin Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManlyMarco/RG-HF_Patch/HEAD/Plugin Readme.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManlyMarco/RG-HF_Patch/HEAD/README.md -------------------------------------------------------------------------------- /Translations.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManlyMarco/RG-HF_Patch/HEAD/Translations.iss -------------------------------------------------------------------------------- /_Common/Header.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManlyMarco/RG-HF_Patch/HEAD/_Common/Header.iss -------------------------------------------------------------------------------- /_Common/hf.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManlyMarco/RG-HF_Patch/HEAD/_Common/hf.bmp -------------------------------------------------------------------------------- /banner.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManlyMarco/RG-HF_Patch/HEAD/banner.bmp -------------------------------------------------------------------------------- /components.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManlyMarco/RG-HF_Patch/HEAD/components.iss -------------------------------------------------------------------------------- /icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManlyMarco/RG-HF_Patch/HEAD/icon.ico -------------------------------------------------------------------------------- /patch.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManlyMarco/RG-HF_Patch/HEAD/patch.iss --------------------------------------------------------------------------------