diff --git a/SWGSourceLauncher.sln b/SWGSourceLauncher.sln new file mode 100644 index 0000000..314842f --- /dev/null +++ b/SWGSourceLauncher.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.30114.105 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SWGSourceLauncher", "SWGSourceLauncher\SWGSourceLauncher.csproj", "{7F6FF448-357A-4E16-9055-7CE4DC18B7DA}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Debug|x86 = Debug|x86 + Release|Any CPU = Release|Any CPU + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {7F6FF448-357A-4E16-9055-7CE4DC18B7DA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {7F6FF448-357A-4E16-9055-7CE4DC18B7DA}.Debug|Any CPU.Build.0 = Debug|Any CPU + {7F6FF448-357A-4E16-9055-7CE4DC18B7DA}.Debug|x86.ActiveCfg = Debug|x86 + {7F6FF448-357A-4E16-9055-7CE4DC18B7DA}.Debug|x86.Build.0 = Debug|x86 + {7F6FF448-357A-4E16-9055-7CE4DC18B7DA}.Release|Any CPU.ActiveCfg = Release|Any CPU + {7F6FF448-357A-4E16-9055-7CE4DC18B7DA}.Release|Any CPU.Build.0 = Release|Any CPU + {7F6FF448-357A-4E16-9055-7CE4DC18B7DA}.Release|x86.ActiveCfg = Release|x86 + {7F6FF448-357A-4E16-9055-7CE4DC18B7DA}.Release|x86.Build.0 = Release|x86 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {02EC5655-2A8E-4861-BAE2-A2E3DA0FE7F6} + EndGlobalSection +EndGlobal diff --git a/SWGSourceLauncher/App.config b/SWGSourceLauncher/App.config new file mode 100644 index 0000000..69f4c9b --- /dev/null +++ b/SWGSourceLauncher/App.config @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/SWGSourceLauncher/App.xaml b/SWGSourceLauncher/App.xaml new file mode 100644 index 0000000..8b63391 --- /dev/null +++ b/SWGSourceLauncher/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/SWGSourceLauncher/App.xaml.cs b/SWGSourceLauncher/App.xaml.cs new file mode 100644 index 0000000..4828ad1 --- /dev/null +++ b/SWGSourceLauncher/App.xaml.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Configuration; +using System.Data; +using System.Linq; +using System.Threading.Tasks; +using System.Windows; + +namespace SWGSourceLauncher +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff --git a/SWGSourceLauncher/Bandit42/SWGSourceLauncher b/SWGSourceLauncher/Bandit42/SWGSourceLauncher new file mode 160000 index 0000000..5253a29 --- /dev/null +++ b/SWGSourceLauncher/Bandit42/SWGSourceLauncher @@ -0,0 +1 @@ +Subproject commit 5253a29092bb28f6c1b7a02d157e174ecf444c67 diff --git a/SWGSourceLauncher/ClassDiagram1.cd b/SWGSourceLauncher/ClassDiagram1.cd new file mode 100644 index 0000000..7b89419 --- /dev/null +++ b/SWGSourceLauncher/ClassDiagram1.cd @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/SWGSourceLauncher/Launcher.cs b/SWGSourceLauncher/Launcher.cs new file mode 100644 index 0000000..031aa1d --- /dev/null +++ b/SWGSourceLauncher/Launcher.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Diagnostics; + +namespace SWGSourceLauncher +{ + class Launcher + { + public static void PlayGame() + { + Process.Start("SwgClient_r.exe"); + } + + public static void LaunchWebsite(string url) + { + Process.Start(url); + } + } +} diff --git a/SWGSourceLauncher/MainWindow.xaml b/SWGSourceLauncher/MainWindow.xaml new file mode 100644 index 0000000..0a5bdfc --- /dev/null +++ b/SWGSourceLauncher/MainWindow.xaml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + +