├── .gitignore ├── .gitmodules ├── Makefile ├── README.md ├── assets ├── backdrop.png ├── coin.png ├── font_04b03.json ├── font_04b03.png ├── hints.png ├── player.png └── tiles.png └── src ├── entities ├── coin.c └── player.c ├── high_impact.c ├── high_impact.h ├── main.c ├── main.h ├── scenes └── game.c └── wasm_index.html /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoboslab/high_drop/HEAD/.gitmodules -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoboslab/high_drop/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoboslab/high_drop/HEAD/README.md -------------------------------------------------------------------------------- /assets/backdrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoboslab/high_drop/HEAD/assets/backdrop.png -------------------------------------------------------------------------------- /assets/coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoboslab/high_drop/HEAD/assets/coin.png -------------------------------------------------------------------------------- /assets/font_04b03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoboslab/high_drop/HEAD/assets/font_04b03.json -------------------------------------------------------------------------------- /assets/font_04b03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoboslab/high_drop/HEAD/assets/font_04b03.png -------------------------------------------------------------------------------- /assets/hints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoboslab/high_drop/HEAD/assets/hints.png -------------------------------------------------------------------------------- /assets/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoboslab/high_drop/HEAD/assets/player.png -------------------------------------------------------------------------------- /assets/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoboslab/high_drop/HEAD/assets/tiles.png -------------------------------------------------------------------------------- /src/entities/coin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoboslab/high_drop/HEAD/src/entities/coin.c -------------------------------------------------------------------------------- /src/entities/player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoboslab/high_drop/HEAD/src/entities/player.c -------------------------------------------------------------------------------- /src/high_impact.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoboslab/high_drop/HEAD/src/high_impact.c -------------------------------------------------------------------------------- /src/high_impact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoboslab/high_drop/HEAD/src/high_impact.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoboslab/high_drop/HEAD/src/main.c -------------------------------------------------------------------------------- /src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoboslab/high_drop/HEAD/src/main.h -------------------------------------------------------------------------------- /src/scenes/game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoboslab/high_drop/HEAD/src/scenes/game.c -------------------------------------------------------------------------------- /src/wasm_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoboslab/high_drop/HEAD/src/wasm_index.html --------------------------------------------------------------------------------