An open API service indexing awesome lists of open source software.

https://github.com/benoitprmt/sokoban

Sokoban in C
https://github.com/benoitprmt/sokoban

Last synced: 6 days ago
JSON representation

Sokoban in C

Awesome Lists containing this project

README

          

📦 Sokoban

---


About   |  
Requirements   |  
Starting  

---

## 🎯 About ##

Sokoban is a game where you have to place a box in a location by pushing it.

`o` : Player (you)

`X` : The box to move

`x` : Place to place the box to win

`#` : Wall

![Image of the game](assets/README/image.png)

To move enter `u` for move up, `d` for move down, `l` for move left and `r` for move right.

## ✅ Requirements ##

Before starting 🏁, you need to have [Git](https://git-scm.com) installed.

## 🏁 Starting ##

```bash
# Clone this project
$ git clone https://github.com/BenoitPrmt/Sokoban

# Access
$ cd Sokoban

# Run the project
$ make all

```

 

Back to top