├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── README.md ├── fnl └── squashy.fnl └── games ├── lua └── squashy.lua └── squashy.p8 /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | log.p8l -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersmurphy/fennel-pico-8-example/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersmurphy/fennel-pico-8-example/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersmurphy/fennel-pico-8-example/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersmurphy/fennel-pico-8-example/HEAD/README.md -------------------------------------------------------------------------------- /fnl/squashy.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersmurphy/fennel-pico-8-example/HEAD/fnl/squashy.fnl -------------------------------------------------------------------------------- /games/lua/squashy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersmurphy/fennel-pico-8-example/HEAD/games/lua/squashy.lua -------------------------------------------------------------------------------- /games/squashy.p8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersmurphy/fennel-pico-8-example/HEAD/games/squashy.p8 --------------------------------------------------------------------------------