17 lines
286 B
C#
17 lines
286 B
C#
|
|
using System;
|
||
|
|
using Gtk;
|
||
|
|
|
||
|
|
namespace GridProxyGUI
|
||
|
|
{
|
||
|
|
class MainClass
|
||
|
|
{
|
||
|
|
public static void Main(string[] args)
|
||
|
|
{
|
||
|
|
Application.Init();
|
||
|
|
MainWindow win = new MainWindow();
|
||
|
|
win.Show();
|
||
|
|
Application.Run();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|