mirror of
https://github.com/Bandit42/SWGSourceLauncher.git
synced 2026-07-13 22:01:09 -04:00
23 lines
420 B
C#
23 lines
420 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);
|
|
}
|
|
}
|
|
}
|