https://github.com/corentinb/sokoban
Sokoban game in C, using ncurses
https://github.com/corentinb/sokoban
Last synced: 2 months ago
JSON representation
Sokoban game in C, using ncurses
- Host: GitHub
- URL: https://github.com/corentinb/sokoban
- Owner: CorentinB
- Created: 2018-01-17T05:56:33.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-09T15:24:08.000Z (about 8 years ago)
- Last Synced: 2025-03-11T00:55:57.604Z (over 1 year ago)
- Language: C
- Size: 15.6 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SOKOBAN
Sokoban game in C, using ncurses
# Download and installation
```
git clone https://github.com/CorentinB/sokoban.git
cd sokoban/
make
./sokoban map
```
You can make your own map containing '#' for walls, 'P' for the player, 'X' for boxes and 'O'for storage locations, and pass it as a parameter.
See ```./sokoban -h``` for usage.

