https://github.com/ulasahin/minesweeper
Text-based minesweeper game.
https://github.com/ulasahin/minesweeper
console-application game java oop
Last synced: over 1 year ago
JSON representation
Text-based minesweeper game.
- Host: GitHub
- URL: https://github.com/ulasahin/minesweeper
- Owner: ulasahin
- Created: 2023-12-22T22:47:08.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-28T14:46:38.000Z (over 2 years ago)
- Last Synced: 2025-01-13T22:16:36.390Z (over 1 year ago)
- Topics: console-application, game, java, oop
- Language: Java
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MineSweeper Game
This project includes a simple text-based MineSweeper game written in Java.
## How to Run
1. If Java is not installed, download and install it from the [official Java website](https://www.java.com/).
2. Download or clone the project to your computer.
3. Open the command prompt or terminal and navigate to the project directory.
4. Compile the Java files with the command `javac Main.java`.
5. Start the game with the command `java Main`.
## Game Rules
- The game is text-based.
- Customize the game by specifying the number of rows and columns when starting the game.
- Try to uncover all cells without hitting any mines to win.
- Select one cell at a time and check if there is a mine in that cell.
- If you select a cell with a mine, you lose the game.
This is the final project of the "Kodluyoruz & Microsoft Back-End Web Development(Java)" course.