Initial GTK version of GridProxy

This commit is contained in:
Latif Khalifa
2013-12-01 15:05:43 +01:00
parent 9b8c017ab9
commit e78a1908e5
14 changed files with 1916 additions and 28 deletions

View File

@@ -0,0 +1,16 @@
using System;
using Gtk;
namespace GridProxyGUI
{
class MainClass
{
public static void Main(string[] args)
{
Application.Init();
MainWindow win = new MainWindow();
win.Show();
Application.Run();
}
}
}