From 0d0127013b0a330c61349f23759703bcff3a7d09 Mon Sep 17 00:00:00 2001 From: ArvedE <44003044+ArvedE@users.noreply.github.com> Date: Thu, 8 Oct 2020 22:57:57 +0200 Subject: [PATCH] TikTakToe --- Projects/1-Beginner/TikTakToeGame.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 Projects/1-Beginner/TikTakToeGame.md diff --git a/Projects/1-Beginner/TikTakToeGame.md b/Projects/1-Beginner/TikTakToeGame.md new file mode 100644 index 00000000..fc9a605f --- /dev/null +++ b/Projects/1-Beginner/TikTakToeGame.md @@ -0,0 +1,26 @@ +# Calculator + +**Tier:** 1-Beginner + +TikTakToe is a fun Game to Play for two Players + +## User Stories + +- [ ] Create a 3x3 sized Field. +- [ ] Create Two Player +- [ ] Create Click event for each of the 9 Fields and for every click the Player gets switched Player 1 ... Player 2 ... Player 1 ... +- [ ] After each Click the clicked Field must be filled with the Symbol of the current Player X or O +- [ ] If One Player gets three of the same Symbols in a Line he won. + +## Bonus features + +- [ ] User can Play against the Computer +- [ ] Create a win Count for the Players +## Useful links and resources + +- [Codepen Example](https://codepen.io/thiago-cs/pen/jOqJVMV) +- [MDN](https://developer.mozilla.org/en-US/) + +## Example projects + +- [Many Example Games](https://codepen.io/tag/tic-tac-toe)