├── .gitignore ├── GameDVR_Config.csproj ├── GameDVR_Config.sln ├── GameDVR_ConfigForm.Designer.cs ├── GameDVR_ConfigForm.cs ├── GameDVR_ConfigForm.resx ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── README.md └── app.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunkyFr3sh/GameDVR_Config/HEAD/.gitignore -------------------------------------------------------------------------------- /GameDVR_Config.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunkyFr3sh/GameDVR_Config/HEAD/GameDVR_Config.csproj -------------------------------------------------------------------------------- /GameDVR_Config.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunkyFr3sh/GameDVR_Config/HEAD/GameDVR_Config.sln -------------------------------------------------------------------------------- /GameDVR_ConfigForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunkyFr3sh/GameDVR_Config/HEAD/GameDVR_ConfigForm.Designer.cs -------------------------------------------------------------------------------- /GameDVR_ConfigForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunkyFr3sh/GameDVR_Config/HEAD/GameDVR_ConfigForm.cs -------------------------------------------------------------------------------- /GameDVR_ConfigForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunkyFr3sh/GameDVR_Config/HEAD/GameDVR_ConfigForm.resx -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunkyFr3sh/GameDVR_Config/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunkyFr3sh/GameDVR_Config/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunkyFr3sh/GameDVR_Config/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunkyFr3sh/GameDVR_Config/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunkyFr3sh/GameDVR_Config/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunkyFr3sh/GameDVR_Config/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunkyFr3sh/GameDVR_Config/HEAD/README.md -------------------------------------------------------------------------------- /app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunkyFr3sh/GameDVR_Config/HEAD/app.config --------------------------------------------------------------------------------