diff options
author | marcinzelent <zelent.marcin@protonmail.com> | 2017-10-10 11:21:01 +0200 |
---|---|---|
committer | marcinzelent <zelent.marcin@protonmail.com> | 2017-10-10 11:21:01 +0200 |
commit | a7b4fc7be6dac8c4ff9ae7924eb499d7e2ac1453 (patch) | |
tree | a9a560ccfa0fb990ed766d1a1d225115c16ffa55 /Client/Program.cs | |
parent | 9ce162142924b6f3c8c977624ed2b2c1916f9be2 (diff) |
Diffstat (limited to 'Client/Program.cs')
-rw-r--r-- | Client/Program.cs | 16 |
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(); + } + } +} |