mirror of
https://github.com/Bandit42/SWGSourceLauncher.git
synced 2026-01-16 23:04:31 -05:00
28 lines
527 B
C#
28 lines
527 B
C#
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);
|
|
}
|
|
|
|
public static void Update()
|
|
{
|
|
Process.Start("SWGSourceUpdater.exe");
|
|
}
|
|
}
|
|
}
|