about summary refs log tree commit diff
path: root/chess_monitor/Chess Monitor/Program.cs
diff options
context:
space:
mode:
author1970-01-01 00:00:00 +0000
committer1970-01-01 00:00:00 +0000
commitbd43779933a9e61b580811d1e1bfb5fff16b5702 (patch)
tree39a3518b1551b3efe0e889af04a85b6a5a06d673 /chess_monitor/Chess Monitor/Program.cs
parent2 vers of invoice total (diff)
downloadsql-bd43779933a9e61b580811d1e1bfb5fff16b5702.tar
sql-bd43779933a9e61b580811d1e1bfb5fff16b5702.tar.gz
sql-bd43779933a9e61b580811d1e1bfb5fff16b5702.tar.bz2
sql-bd43779933a9e61b580811d1e1bfb5fff16b5702.tar.xz
sql-bd43779933a9e61b580811d1e1bfb5fff16b5702.zip
chess monitor
Diffstat (limited to 'chess_monitor/Chess Monitor/Program.cs')
-rw-r--r--chess_monitor/Chess Monitor/Program.cs22
1 files changed, 22 insertions, 0 deletions
diff --git a/chess_monitor/Chess Monitor/Program.cs b/chess_monitor/Chess Monitor/Program.cs
new file mode 100644
index 0000000..b45c058
--- /dev/null
+++ b/chess_monitor/Chess Monitor/Program.cs
@@ -0,0 +1,22 @@
+using System;

+using System.Collections.Generic;

+using System.Linq;

+using System.Threading.Tasks;

+using System.Windows.Forms;

+

+namespace Chess_Monitor

+{

+    internal static class Program

+    {

+        /// <summary>

+        /// The main entry point for the application.

+        /// </summary>

+        [STAThread]

+        static void Main()

+        {

+            Application.EnableVisualStyles();

+            Application.SetCompatibleTextRenderingDefault(false);

+            Application.Run(new chessMonitor());

+        }

+    }

+}