🎯 A colorful console implementation of the classic Minesweeper game using only C++.
- The game generates a 9×9 grid with 10 hidden mines.
- Input coordinates in the format:
row column
- Try not to hit a mine!
- Colored output:
- Cyan = hidden cell
- Red = mine
- Yellow = numbers
- White = empty cell
g++ Minesweeper.cpp -o Minesweeper
./Minesweeper