summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormarcinzelent <zelent.marcin@protonmail.com>2017-10-09 08:56:25 +0200
committermarcinzelent <zelent.marcin@protonmail.com>2017-10-09 08:56:25 +0200
commit295e3c10bb6d1c83796554edf8369e5aa87a20a8 (patch)
treef6ad54798c039b6db9aceca3099fd409f6ea4ba8 /Server/Program.cs
Initial commit.
Diffstat (limited to 'Server/Program.cs')
-rw-r--r--Server/Program.cs19
1 files changed, 19 insertions, 0 deletions
diff --git a/Server/Program.cs b/Server/Program.cs
new file mode 100644
index 0000000..35bf5e4
--- /dev/null
+++ b/Server/Program.cs
@@ -0,0 +1,19 @@
+using System;
+using Xwt;
+
+namespace Server
+{
+ class Program
+ {
+ [STAThread]
+ static void Main()
+ {
+ Application.Initialize();
+ var mainWindow = new MainWindow();
+ mainWindow.Show();
+ Application.Run();
+ mainWindow.Dispose();
+ }
+ }
+
+}