From 8cf2a311009a2caaea1156eb9f81f3a09e178640 Mon Sep 17 00:00:00 2001 From: loudKode <50546465+loudKode@users.noreply.github.com> Date: Mon, 26 Aug 2019 10:38:57 +0300 Subject: [PATCH] Add files via upload --- Program.cs | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Program.cs diff --git a/Program.cs b/Program.cs new file mode 100644 index 0000000..c625493 --- /dev/null +++ b/Program.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Windows.Forms; + +namespace CasualGamesStore +{ + static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new TestForm()); + } + } +}