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(); } } }