diff options
Diffstat (limited to 'tic-tac-toe_alt/Tic-Tac-Toe/Program.cs')
-rw-r--r-- | tic-tac-toe_alt/Tic-Tac-Toe/Program.cs | 22 |
1 files changed, 22 insertions, 0 deletions
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 + { + /// <summary> + /// The main entry point for the application. + /// </summary> + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new ticTacToe()); + } + } +} |