A simple puzzle game inspired by Sokoban.
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:
- Levels from here
- 3D models from here
- Font from here
- Background music from here
- Sound effects from here and here
I made this just for fun, hope you enjoy :)