blob: 22bf2bbe53e5f6a83f5cdfef8e50665a4f36f96a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
using System;
using Gtk;
namespace Client
{
class MainClass
{
public static void Main(string[] args)
{
Application.Init();
MainWindow win = new MainWindow();
win.Show();
Application.Run();
}
}
}
|