From adb29a41b828d31a586fec0446d970920237ae43 Mon Sep 17 00:00:00 2001 From: ​ Date: Thu, 1 Jan 1970 00:00:00 +0000 Subject: alternative versions --- tic-tac-toe_alt/Tic-Tac-Toe/Program.cs | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 tic-tac-toe_alt/Tic-Tac-Toe/Program.cs (limited to 'tic-tac-toe_alt/Tic-Tac-Toe/Program.cs') diff --git a/tic-tac-toe_alt/Tic-Tac-Toe/Program.cs b/tic-tac-toe_alt/Tic-Tac-Toe/Program.cs new file mode 100644 index 0000000..f0721e8 --- /dev/null +++ b/tic-tac-toe_alt/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 + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new ticTacToe()); + } + } +} -- cgit 1.4.1