diff options
Diffstat (limited to 'Server/Program.cs')
-rw-r--r-- | Server/Program.cs | 19 |
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(); + } + } + +} |