Advertisement
theTANCO

Game Challenge 2: Tic Tac Toe - main.cpp

Feb 14th, 2023 (edited)
721
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.38 KB | None | 0 0
  1. // MakingGamesWithBen Game Challenge 2: Tic Tac Toe!
  2. // https://www.youtube.com/watch?v=gm2yPC65X78&list=PLSPw4ASQYyynKPY0I-QFHK0iJTjnvNUys&index=21
  3. // Board.h - https://pastebin.com/aHtLP1S9
  4. // Board.cpp - https://pastebin.com/DJemtCeA
  5.  
  6. #include <iostream>
  7. #include "Board.h"
  8.  
  9. using namespace std;
  10.  
  11. int main()
  12. {
  13.     Board board;
  14.     board.playGame();
  15.  
  16.     return 0;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement