diff --git a/README.md b/README.md index 22a1b48..ad59089 100644 --- a/README.md +++ b/README.md @@ -1 +1,7 @@ -TicTacToeDialog \ No newline at end of file +# TicTacToeDialog + +Tic Tac Toe game in windows dialog built with MFC and Win32 API. + +Minimax algorithm is used to power computer AI. + +![Screenshot](./img/screen.jpg) \ No newline at end of file diff --git a/TicTacToeDialog.vcxproj b/TicTacToeDialog.vcxproj index d600e30..7836b1e 100644 --- a/TicTacToeDialog.vcxproj +++ b/TicTacToeDialog.vcxproj @@ -156,6 +156,9 @@ + + + diff --git a/TicTacToeDialog.vcxproj.filters b/TicTacToeDialog.vcxproj.filters index a54fd11..f2f16b7 100644 --- a/TicTacToeDialog.vcxproj.filters +++ b/TicTacToeDialog.vcxproj.filters @@ -44,4 +44,7 @@ Resource Files + + + \ No newline at end of file diff --git a/img/screen.jpg b/img/screen.jpg new file mode 100644 index 0000000..39a838a Binary files /dev/null and b/img/screen.jpg differ