From bd43779933a9e61b580811d1e1bfb5fff16b5702 Mon Sep 17 00:00:00 2001
From: ​
Date: Thu, 1 Jan 1970 00:00:00 +0000
Subject: chess monitor

---
 chess_monitor/Chess Monitor/Program.cs | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)
 create mode 100644 chess_monitor/Chess Monitor/Program.cs

(limited to 'chess_monitor/Chess Monitor/Program.cs')

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());
+        }
+    }
+}
-- 
cgit 1.4.1