├── .github └── workflows │ └── dotnet.yml ├── .gitignore ├── CONTRIBUTING.md ├── GenshinLauncher.sln ├── GenshinLauncher.sln.DotSettings ├── GenshinLauncher ├── App.xaml ├── App.xaml.cs ├── AssemblyInfo.cs ├── Bootstrapper.cs ├── Config.Designer.cs ├── Config.cs ├── Config.settings ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── GenshinImpactIcon.ico ├── GenshinLauncher.csproj ├── Models │ ├── Quality.cs │ └── Resolution.cs ├── ViewModels │ ├── MainWindowViewModel.cs │ └── QualityViewModel.cs ├── Views │ └── MainWindowView.xaml └── app.manifest ├── LICENSE.md ├── README.md └── THIRD-PARTY-NOTICES.md /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabihoshi/GenshinLauncher/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabihoshi/GenshinLauncher/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabihoshi/GenshinLauncher/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /GenshinLauncher.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabihoshi/GenshinLauncher/HEAD/GenshinLauncher.sln -------------------------------------------------------------------------------- /GenshinLauncher.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabihoshi/GenshinLauncher/HEAD/GenshinLauncher.sln.DotSettings -------------------------------------------------------------------------------- /GenshinLauncher/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabihoshi/GenshinLauncher/HEAD/GenshinLauncher/App.xaml -------------------------------------------------------------------------------- /GenshinLauncher/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabihoshi/GenshinLauncher/HEAD/GenshinLauncher/App.xaml.cs -------------------------------------------------------------------------------- /GenshinLauncher/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabihoshi/GenshinLauncher/HEAD/GenshinLauncher/AssemblyInfo.cs -------------------------------------------------------------------------------- /GenshinLauncher/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabihoshi/GenshinLauncher/HEAD/GenshinLauncher/Bootstrapper.cs -------------------------------------------------------------------------------- /GenshinLauncher/Config.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabihoshi/GenshinLauncher/HEAD/GenshinLauncher/Config.Designer.cs -------------------------------------------------------------------------------- /GenshinLauncher/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabihoshi/GenshinLauncher/HEAD/GenshinLauncher/Config.cs -------------------------------------------------------------------------------- /GenshinLauncher/Config.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabihoshi/GenshinLauncher/HEAD/GenshinLauncher/Config.settings -------------------------------------------------------------------------------- /GenshinLauncher/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabihoshi/GenshinLauncher/HEAD/GenshinLauncher/FodyWeavers.xml -------------------------------------------------------------------------------- /GenshinLauncher/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabihoshi/GenshinLauncher/HEAD/GenshinLauncher/FodyWeavers.xsd -------------------------------------------------------------------------------- /GenshinLauncher/GenshinImpactIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabihoshi/GenshinLauncher/HEAD/GenshinLauncher/GenshinImpactIcon.ico -------------------------------------------------------------------------------- /GenshinLauncher/GenshinLauncher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabihoshi/GenshinLauncher/HEAD/GenshinLauncher/GenshinLauncher.csproj -------------------------------------------------------------------------------- /GenshinLauncher/Models/Quality.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabihoshi/GenshinLauncher/HEAD/GenshinLauncher/Models/Quality.cs -------------------------------------------------------------------------------- /GenshinLauncher/Models/Resolution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabihoshi/GenshinLauncher/HEAD/GenshinLauncher/Models/Resolution.cs -------------------------------------------------------------------------------- /GenshinLauncher/ViewModels/MainWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabihoshi/GenshinLauncher/HEAD/GenshinLauncher/ViewModels/MainWindowViewModel.cs -------------------------------------------------------------------------------- /GenshinLauncher/ViewModels/QualityViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabihoshi/GenshinLauncher/HEAD/GenshinLauncher/ViewModels/QualityViewModel.cs -------------------------------------------------------------------------------- /GenshinLauncher/Views/MainWindowView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabihoshi/GenshinLauncher/HEAD/GenshinLauncher/Views/MainWindowView.xaml -------------------------------------------------------------------------------- /GenshinLauncher/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabihoshi/GenshinLauncher/HEAD/GenshinLauncher/app.manifest -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabihoshi/GenshinLauncher/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabihoshi/GenshinLauncher/HEAD/README.md -------------------------------------------------------------------------------- /THIRD-PARTY-NOTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabihoshi/GenshinLauncher/HEAD/THIRD-PARTY-NOTICES.md --------------------------------------------------------------------------------