Initial GTK version of GridProxy
This commit is contained in:
16
Programs/GridProxyGUI/Program.cs
Executable file
16
Programs/GridProxyGUI/Program.cs
Executable 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();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user