├── Kingdom Hearts 2 Launcher ├── Assets │ ├── khlauncherlogo.ico │ └── khlauncherlogo.png ├── App.config ├── packages.config ├── Properties │ ├── Settings.settings │ ├── Settings.Designer.cs │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── App.xaml ├── App.xaml.cs ├── LauncherConfig.xaml ├── MainWindow.xaml ├── LauncherConfig.xaml.cs ├── Kingdom Hearts 2 Launcher.csproj └── MainWindow.xaml.cs ├── Kingdom Hearts 4 Launcher ├── Assets │ ├── khlauncherlogo.ico │ └── khlauncherlogo.png ├── App.config ├── packages.config ├── Properties │ ├── Settings.settings │ ├── Settings.Designer.cs │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── App.xaml ├── App.xaml.cs ├── MainWindow.xaml ├── LauncherConfig.xaml ├── Kingdom Hearts 4 Launcher.csproj ├── LauncherConfig.xaml.cs └── MainWindow.xaml.cs ├── LICENSE.txt ├── Kingdom-Hearts-Launchers.sln ├── .gitattributes ├── README.md └── .gitignore /Kingdom Hearts 2 Launcher/Assets/khlauncherlogo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SandeMC/Kingdom-Hearts-Launchers/HEAD/Kingdom Hearts 2 Launcher/Assets/khlauncherlogo.ico -------------------------------------------------------------------------------- /Kingdom Hearts 2 Launcher/Assets/khlauncherlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SandeMC/Kingdom-Hearts-Launchers/HEAD/Kingdom Hearts 2 Launcher/Assets/khlauncherlogo.png -------------------------------------------------------------------------------- /Kingdom Hearts 4 Launcher/Assets/khlauncherlogo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SandeMC/Kingdom-Hearts-Launchers/HEAD/Kingdom Hearts 4 Launcher/Assets/khlauncherlogo.ico -------------------------------------------------------------------------------- /Kingdom Hearts 4 Launcher/Assets/khlauncherlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SandeMC/Kingdom-Hearts-Launchers/HEAD/Kingdom Hearts 4 Launcher/Assets/khlauncherlogo.png -------------------------------------------------------------------------------- /Kingdom Hearts 2 Launcher/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Kingdom Hearts 4 Launcher/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Kingdom Hearts 2 Launcher/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Kingdom Hearts 4 Launcher/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Kingdom Hearts 2 Launcher/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Kingdom Hearts 4 Launcher/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Kingdom Hearts 4 Launcher/App.xaml: -------------------------------------------------------------------------------- 1 | 5 | 6 | -------------------------------------------------------------------------------- /Kingdom Hearts 2 Launcher/App.xaml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Kingdom Hearts 2 Launcher/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace Kingdom_Hearts_2_Launcher 10 | { 11 | public partial class App : Application 12 | { 13 | [STAThread] 14 | public static void Main(string[] args) 15 | { 16 | Kingdom_Hearts_2_Launcher.App app = new Kingdom_Hearts_2_Launcher.App(); 17 | app.InitializeComponent(); 18 | MainWindow mainWindow = new MainWindow(args); 19 | app.Run(mainWindow); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Kingdom Hearts 4 Launcher/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace Kingdom_Hearts_4_Launcher 10 | { 11 | public partial class App : Application 12 | { 13 | [STAThread] 14 | public static void Main(string[] args) 15 | { 16 | Kingdom_Hearts_4_Launcher.App app = new Kingdom_Hearts_4_Launcher.App(); 17 | app.InitializeComponent(); 18 | MainWindow mainWindow = new MainWindow(args); 19 | app.Run(mainWindow); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) [year] [fullname] 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Kingdom Hearts 4 Launcher/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace Kingdom_Hearts_4_Launcher.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "17.11.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /Kingdom Hearts 2 Launcher/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace Kingdom_Hearts_2_Launcher.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Kingdom Hearts 2 Launcher/LauncherConfig.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 |