Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // MakingGamesWithBen Game Challenge 2: Tic Tac Toe!
- // https://www.youtube.com/watch?v=gm2yPC65X78&list=PLSPw4ASQYyynKPY0I-QFHK0iJTjnvNUys&index=21
- // Board.h - https://pastebin.com/aHtLP1S9
- // Board.cpp - https://pastebin.com/DJemtCeA
- #include <iostream>
- #include "Board.h"
- using namespace std;
- int main()
- {
- Board board;
- board.playGame();
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement