GitHub - aabiji/chickoban: a sokoban clone

1 min read Original article ↗

A simple puzzle game inspired by Sokoban. You can play it online here

Screenshot

Build and run:

# For web
# Install emscripten: https://emscripten.org/docs/getting_started/downloads.html
emcmake cmake -B build-web -DPLATFORM=Web -DCMAKE_BUILD_TYPE=Release
cd build-web && make && cd chickoban
sudo npm install -g live-server
live-server --entry-file=chickoban.html

# For desktop
cmake -B build -DCMAKE_BUILD_TYPE=Release
cd build && make && cd chickoban
./chickoban

Credits:

I made this just for fun, hope you enjoy :)