├── .gitignore ├── .gitmodules ├── Makefile ├── README.md ├── controllermap ├── pico-8 └── .gitignore ├── run_game.sh ├── run_led.sh ├── run_led_120fps.sh ├── run_splore.sh └── xserver-screen.cc /.gitignore: -------------------------------------------------------------------------------- 1 | /*.o 2 | /xserver-screen 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenissimo/pico8-led/HEAD/.gitmodules -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenissimo/pico8-led/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenissimo/pico8-led/HEAD/README.md -------------------------------------------------------------------------------- /controllermap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenissimo/pico8-led/HEAD/controllermap -------------------------------------------------------------------------------- /pico-8/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | */ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /run_game.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenissimo/pico8-led/HEAD/run_game.sh -------------------------------------------------------------------------------- /run_led.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenissimo/pico8-led/HEAD/run_led.sh -------------------------------------------------------------------------------- /run_led_120fps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenissimo/pico8-led/HEAD/run_led_120fps.sh -------------------------------------------------------------------------------- /run_splore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenissimo/pico8-led/HEAD/run_splore.sh -------------------------------------------------------------------------------- /xserver-screen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenissimo/pico8-led/HEAD/xserver-screen.cc --------------------------------------------------------------------------------