about summary refs log tree commit diff
path: root/tic-tac-toe/Tic-Tac-Toe/Program.cs
diff options
context:
space:
mode:
author1970-01-01 00:00:00 +0000
committer1970-01-01 00:00:00 +0000
commit7567c6e360d9f644b568384f51caf8cc0c4b12d7 (patch)
tree398f3e5ddf8221bdf747847de90a6bef0d695d84 /tic-tac-toe/Tic-Tac-Toe/Program.cs
parentword counter (diff)
downloadsql-7567c6e360d9f644b568384f51caf8cc0c4b12d7.tar
sql-7567c6e360d9f644b568384f51caf8cc0c4b12d7.tar.gz
sql-7567c6e360d9f644b568384f51caf8cc0c4b12d7.tar.bz2
sql-7567c6e360d9f644b568384f51caf8cc0c4b12d7.tar.xz
sql-7567c6e360d9f644b568384f51caf8cc0c4b12d7.zip
tic-tac-toe
Diffstat (limited to 'tic-tac-toe/Tic-Tac-Toe/Program.cs')
-rw-r--r--tic-tac-toe/Tic-Tac-Toe/Program.cs22
1 files changed, 22 insertions, 0 deletions
diff --git a/tic-tac-toe/Tic-Tac-Toe/Program.cs b/tic-tac-toe/Tic-Tac-Toe/Program.cs
new file mode 100644
index 0000000..f0721e8
--- /dev/null
+++ b/tic-tac-toe/Tic-Tac-Toe/Program.cs
@@ -0,0 +1,22 @@
+using System;

+using System.Collections.Generic;

+using System.Linq;

+using System.Threading.Tasks;

+using System.Windows.Forms;

+

+namespace Tic_Tac_Toe

+{

+    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 ticTacToe());

+        }

+    }

+}