# Games-in-Rust
This project contains various games implemented in Rust. Currently, it includes a maze game.
## Maze Game
The maze game generates a random maze and allows the player to navigate through it using the arrow keys.
## Minesweeper
The minesweeper game generates a random board and the player need to flag and reveal each cells using the arrow keys.
## How to Run
- Ensure you have Rust installed. If not, you can install it from [rust-lang.org](https://www.rust-lang.org/).
- Build dependencies:
```bash
sudo apt install libncurses5-dev libncursesw5-dev
```
- Clone the repository:
```bash
git clone https://github.com/avcode-exe/Games-in-Rust.git
```
- Build and run the project:
```bash
cargo run --release
```
- Enjoy!