16 lines
298 B
C#
16 lines
298 B
C#
using Gtk;
|
|
|
|
namespace MelonVPNClient
|
|
{
|
|
class MainClass
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
Application.Init("Melon VPN", ref args);
|
|
MainWindow win = new MainWindow();
|
|
win.Show();
|
|
Application.Run();
|
|
}
|
|
}
|
|
}
|