summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Program.cs')
-rw-r--r--Client/Program.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/Client/Program.cs b/Client/Program.cs
new file mode 100644
index 0000000..22bf2bb
--- /dev/null
+++ b/Client/Program.cs
@@ -0,0 +1,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();
+ }
+ }
+}