├── .gitignore ├── AboutBox.Designer.cs ├── AboutBox.cs ├── AboutBox.resx ├── Assets ├── Banner.png ├── Banner.psd ├── Glacier.jpg ├── Sig.png ├── Sig.psd ├── URL.txt ├── Wallpaper.jpg ├── Wallpaper2.jpg ├── Wallpaper3.jpg ├── Wallpaper4.jpg ├── Wallpaper5.jpg ├── Wallpaper6.jpg ├── borderlands.ico ├── borderlands.png ├── network.ico └── title_bar.png ├── BorderlandsAdvancedConfig.csproj ├── BorderlandsAdvancedConfig.sln ├── CurrentVersion.txt ├── ErrorHandling ├── ErrorMessageBox.Designer.cs ├── ErrorMessageBox.cs └── ErrorMessageBox.resx ├── FrmConfig.Designer.cs ├── FrmConfig.cs ├── FrmConfig.resx ├── FrmLoad.Designer.cs ├── FrmLoad.cs ├── FrmLoad.resx ├── INIParser ├── ConfigEntry.cs ├── ConfigEntryKey.cs ├── ConfigSection.cs └── INIFileParser.cs ├── LICENSE ├── LocalizedStrings.Designer.cs ├── LocalizedStrings.resx ├── PathSettings.cs ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── README.md ├── SettingsManagers ├── EngineSettingsManager.cs ├── GameSettingsManager.cs └── InputSettingsManager.cs ├── VersionCheck.cs ├── app.config └── borderlands.ico /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/.gitignore -------------------------------------------------------------------------------- /AboutBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/AboutBox.Designer.cs -------------------------------------------------------------------------------- /AboutBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/AboutBox.cs -------------------------------------------------------------------------------- /AboutBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/AboutBox.resx -------------------------------------------------------------------------------- /Assets/Banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/Assets/Banner.png -------------------------------------------------------------------------------- /Assets/Banner.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/Assets/Banner.psd -------------------------------------------------------------------------------- /Assets/Glacier.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/Assets/Glacier.jpg -------------------------------------------------------------------------------- /Assets/Sig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/Assets/Sig.png -------------------------------------------------------------------------------- /Assets/Sig.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/Assets/Sig.psd -------------------------------------------------------------------------------- /Assets/URL.txt: -------------------------------------------------------------------------------- 1 | http://sirithlainion.deviantart.com/art/Game-Icons-XII-139043726 -------------------------------------------------------------------------------- /Assets/Wallpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/Assets/Wallpaper.jpg -------------------------------------------------------------------------------- /Assets/Wallpaper2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/Assets/Wallpaper2.jpg -------------------------------------------------------------------------------- /Assets/Wallpaper3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/Assets/Wallpaper3.jpg -------------------------------------------------------------------------------- /Assets/Wallpaper4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/Assets/Wallpaper4.jpg -------------------------------------------------------------------------------- /Assets/Wallpaper5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/Assets/Wallpaper5.jpg -------------------------------------------------------------------------------- /Assets/Wallpaper6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/Assets/Wallpaper6.jpg -------------------------------------------------------------------------------- /Assets/borderlands.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/Assets/borderlands.ico -------------------------------------------------------------------------------- /Assets/borderlands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/Assets/borderlands.png -------------------------------------------------------------------------------- /Assets/network.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/Assets/network.ico -------------------------------------------------------------------------------- /Assets/title_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/Assets/title_bar.png -------------------------------------------------------------------------------- /BorderlandsAdvancedConfig.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/BorderlandsAdvancedConfig.csproj -------------------------------------------------------------------------------- /BorderlandsAdvancedConfig.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/BorderlandsAdvancedConfig.sln -------------------------------------------------------------------------------- /CurrentVersion.txt: -------------------------------------------------------------------------------- 1 | 1.0.2.0 2 | -------------------------------------------------------------------------------- /ErrorHandling/ErrorMessageBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/ErrorHandling/ErrorMessageBox.Designer.cs -------------------------------------------------------------------------------- /ErrorHandling/ErrorMessageBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/ErrorHandling/ErrorMessageBox.cs -------------------------------------------------------------------------------- /ErrorHandling/ErrorMessageBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/ErrorHandling/ErrorMessageBox.resx -------------------------------------------------------------------------------- /FrmConfig.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/FrmConfig.Designer.cs -------------------------------------------------------------------------------- /FrmConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/FrmConfig.cs -------------------------------------------------------------------------------- /FrmConfig.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/FrmConfig.resx -------------------------------------------------------------------------------- /FrmLoad.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/FrmLoad.Designer.cs -------------------------------------------------------------------------------- /FrmLoad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/FrmLoad.cs -------------------------------------------------------------------------------- /FrmLoad.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/FrmLoad.resx -------------------------------------------------------------------------------- /INIParser/ConfigEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/INIParser/ConfigEntry.cs -------------------------------------------------------------------------------- /INIParser/ConfigEntryKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/INIParser/ConfigEntryKey.cs -------------------------------------------------------------------------------- /INIParser/ConfigSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/INIParser/ConfigSection.cs -------------------------------------------------------------------------------- /INIParser/INIFileParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/INIParser/INIFileParser.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/LICENSE -------------------------------------------------------------------------------- /LocalizedStrings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/LocalizedStrings.Designer.cs -------------------------------------------------------------------------------- /LocalizedStrings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/LocalizedStrings.resx -------------------------------------------------------------------------------- /PathSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/PathSettings.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/README.md -------------------------------------------------------------------------------- /SettingsManagers/EngineSettingsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/SettingsManagers/EngineSettingsManager.cs -------------------------------------------------------------------------------- /SettingsManagers/GameSettingsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/SettingsManagers/GameSettingsManager.cs -------------------------------------------------------------------------------- /SettingsManagers/InputSettingsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/SettingsManagers/InputSettingsManager.cs -------------------------------------------------------------------------------- /VersionCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/VersionCheck.cs -------------------------------------------------------------------------------- /app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/app.config -------------------------------------------------------------------------------- /borderlands.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLonerD/BorderlandsAdvancedConfig/HEAD/borderlands.ico --------------------------------------------------------------------------------