diff options
author | emkael <emkael@tlen.pl> | 2018-10-12 20:21:32 +0200 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2018-10-12 20:21:32 +0200 |
commit | c20400ae41f6f545e3cb504a901ee25c36ab1fe9 (patch) | |
tree | 0c09f43569edf2c377db1ba3598f3f45222be8a4 /kurier/Program.cs |
Initial commit:
- basic UI
Diffstat (limited to 'kurier/Program.cs')
-rw-r--r-- | kurier/Program.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/kurier/Program.cs b/kurier/Program.cs new file mode 100644 index 0000000..2114d67 --- /dev/null +++ b/kurier/Program.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.Windows.Forms; + +namespace kurier +{ + static class Program + { + /// <summary> + /// The main entry point for the application. + /// </summary> + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new Form1()); + } + } +} |