├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── resharper-check.yml ├── .gitignore ├── BmLauncherWForm.csproj ├── BmLauncherWForm.sln ├── LICENSE ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs ├── Settings.settings └── app.manifest ├── README.md ├── Resources ├── BmCamera.ini ├── BmCompat.ini ├── BmEditor.ini ├── BmEditorUserSettings.ini ├── BmEngine.ini ├── BmGame.ini ├── BmInput.ini ├── BmUI.ini ├── LauncherStart1.png ├── NVSetter.exe ├── NvAPIWrapper.dll ├── UserEngine.ini ├── UserGame.ini ├── UserInput.ini ├── favicon.ico └── nexus_icon.ico ├── _config.yml ├── _layouts └── default.html ├── _sass └── jekyll-theme-minimalist.scss ├── app.config ├── data ├── Graphics.cs ├── GraphicsInterpreter.cs ├── GraphicsWriter.cs ├── GuiInitializer.cs ├── KeybindInterpreter.cs ├── Presets.cs └── WineChecker.cs ├── favicon.ico ├── infrastructure ├── Factory.cs ├── NativeMethods.cs ├── NvidiaWorker.cs └── SysResolutions.cs ├── packages.config └── ui ├── BmLauncherForm.Designer.cs ├── BmLauncherForm.cs ├── BmLauncherForm.resx ├── CreditsWindow.Designer.cs ├── CreditsWindow.cs ├── CreditsWindow.resx ├── InputForm.Designer.cs ├── InputForm.cs ├── InputForm.resx ├── KeyHelpForm.Designer.cs ├── KeyHelpForm.cs ├── KeyHelpForm.resx ├── KeybindForm.Designer.cs ├── KeybindForm.cs ├── KeybindForm.resx ├── SpeedrunHint.Designer.cs ├── SpeedrunHint.cs └── SpeedrunHint.resx /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/resharper-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/.github/workflows/resharper-check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/.gitignore -------------------------------------------------------------------------------- /BmLauncherWForm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/BmLauncherWForm.csproj -------------------------------------------------------------------------------- /BmLauncherWForm.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/BmLauncherWForm.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/LICENSE -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/Properties/app.manifest -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/README.md -------------------------------------------------------------------------------- /Resources/BmCamera.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/Resources/BmCamera.ini -------------------------------------------------------------------------------- /Resources/BmCompat.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/Resources/BmCompat.ini -------------------------------------------------------------------------------- /Resources/BmEditor.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/Resources/BmEditor.ini -------------------------------------------------------------------------------- /Resources/BmEditorUserSettings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/Resources/BmEditorUserSettings.ini -------------------------------------------------------------------------------- /Resources/BmEngine.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/Resources/BmEngine.ini -------------------------------------------------------------------------------- /Resources/BmGame.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/Resources/BmGame.ini -------------------------------------------------------------------------------- /Resources/BmInput.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/Resources/BmInput.ini -------------------------------------------------------------------------------- /Resources/BmUI.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/Resources/BmUI.ini -------------------------------------------------------------------------------- /Resources/LauncherStart1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/Resources/LauncherStart1.png -------------------------------------------------------------------------------- /Resources/NVSetter.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/Resources/NVSetter.exe -------------------------------------------------------------------------------- /Resources/NvAPIWrapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/Resources/NvAPIWrapper.dll -------------------------------------------------------------------------------- /Resources/UserEngine.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/Resources/UserEngine.ini -------------------------------------------------------------------------------- /Resources/UserGame.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/Resources/UserGame.ini -------------------------------------------------------------------------------- /Resources/UserInput.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/Resources/UserInput.ini -------------------------------------------------------------------------------- /Resources/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/Resources/favicon.ico -------------------------------------------------------------------------------- /Resources/nexus_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/Resources/nexus_icon.ico -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/_config.yml -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /_sass/jekyll-theme-minimalist.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/_sass/jekyll-theme-minimalist.scss -------------------------------------------------------------------------------- /app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/app.config -------------------------------------------------------------------------------- /data/Graphics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/data/Graphics.cs -------------------------------------------------------------------------------- /data/GraphicsInterpreter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/data/GraphicsInterpreter.cs -------------------------------------------------------------------------------- /data/GraphicsWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/data/GraphicsWriter.cs -------------------------------------------------------------------------------- /data/GuiInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/data/GuiInitializer.cs -------------------------------------------------------------------------------- /data/KeybindInterpreter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/data/KeybindInterpreter.cs -------------------------------------------------------------------------------- /data/Presets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/data/Presets.cs -------------------------------------------------------------------------------- /data/WineChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/data/WineChecker.cs -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/favicon.ico -------------------------------------------------------------------------------- /infrastructure/Factory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/infrastructure/Factory.cs -------------------------------------------------------------------------------- /infrastructure/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/infrastructure/NativeMethods.cs -------------------------------------------------------------------------------- /infrastructure/NvidiaWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/infrastructure/NvidiaWorker.cs -------------------------------------------------------------------------------- /infrastructure/SysResolutions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/infrastructure/SysResolutions.cs -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/packages.config -------------------------------------------------------------------------------- /ui/BmLauncherForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/ui/BmLauncherForm.Designer.cs -------------------------------------------------------------------------------- /ui/BmLauncherForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/ui/BmLauncherForm.cs -------------------------------------------------------------------------------- /ui/BmLauncherForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/ui/BmLauncherForm.resx -------------------------------------------------------------------------------- /ui/CreditsWindow.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/ui/CreditsWindow.Designer.cs -------------------------------------------------------------------------------- /ui/CreditsWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/ui/CreditsWindow.cs -------------------------------------------------------------------------------- /ui/CreditsWindow.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/ui/CreditsWindow.resx -------------------------------------------------------------------------------- /ui/InputForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/ui/InputForm.Designer.cs -------------------------------------------------------------------------------- /ui/InputForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/ui/InputForm.cs -------------------------------------------------------------------------------- /ui/InputForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/ui/InputForm.resx -------------------------------------------------------------------------------- /ui/KeyHelpForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/ui/KeyHelpForm.Designer.cs -------------------------------------------------------------------------------- /ui/KeyHelpForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/ui/KeyHelpForm.cs -------------------------------------------------------------------------------- /ui/KeyHelpForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/ui/KeyHelpForm.resx -------------------------------------------------------------------------------- /ui/KeybindForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/ui/KeybindForm.Designer.cs -------------------------------------------------------------------------------- /ui/KeybindForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/ui/KeybindForm.cs -------------------------------------------------------------------------------- /ui/KeybindForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/ui/KeybindForm.resx -------------------------------------------------------------------------------- /ui/SpeedrunHint.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/ui/SpeedrunHint.Designer.cs -------------------------------------------------------------------------------- /ui/SpeedrunHint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/ui/SpeedrunHint.cs -------------------------------------------------------------------------------- /ui/SpeedrunHint.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/BmLauncher/HEAD/ui/SpeedrunHint.resx --------------------------------------------------------------------------------