melonvpn-original-cs/MelonVPNClient/Program.cs

16 lines
298 B
C#
Raw Normal View History

2020-09-22 23:10:16 +01:00
using Gtk;
namespace MelonVPNClient
{
class MainClass
{
public static void Main(string[] args)
{
2020-10-05 13:06:11 +01:00
Application.Init("Melon VPN", ref args);
2020-09-22 23:10:16 +01:00
MainWindow win = new MainWindow();
win.Show();
Application.Run();
}
}
}