Advertisement
Guest User

main.cpp

a guest
Mar 25th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #include <iostream>
  2. #include "MinesweeperBoard.h"
  3.  
  4.  
  5.  
  6. int main()
  7. {
  8. MinesweeperBoard board;
  9. //board.set_board();
  10.  
  11. board.gamemode(EASY);
  12. board.debug_display();
  13. board.countMines(3,3);
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement