├── .github └── workflows │ └── build.yml ├── .gitignore ├── Audio.cpp ├── Audio.hpp ├── CMakeLists.txt ├── CMakeSettings.json ├── LICENSE ├── PicoAudio.cpp ├── README.md ├── SuperSquareBros.cpp ├── SuperSquareBros.hpp ├── assets.yml ├── assets ├── Super_Square_Bros_Spritesheet.tsx ├── boss.mp3 ├── end_level.tmx ├── icon.png ├── image.png ├── level0.tmx ├── level1.tmx ├── level2.tmx ├── level3.tmx ├── level4.tmx ├── level5.tmx ├── level6.tmx ├── level7.tmx ├── level8-backup.tmx ├── level8.tmx ├── level8_pico.tmx ├── level9_pico.tmx ├── level_character.tmx ├── level_extra0.tmx ├── level_extra0_unedited.tmx ├── level_select - in progress.tmx ├── level_select.tmx ├── level_select_pico.tmx ├── level_title.tmx ├── music_splash.mp3 ├── sound_coin.mp3 ├── sound_enemydeath.mp3 ├── sound_enemyinjured.mp3 ├── sound_enemythrow.mp3 ├── sound_jump.mp3 ├── sound_playerdeath.mp3 ├── sound_playerinjured.mp3 ├── sound_select.mp3 ├── sound_select_old.mp3 ├── spritesheet.png └── template.tmx ├── hackyFastMode_docs.txt ├── metadata.yml └── pico-assets.yml /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/.gitignore -------------------------------------------------------------------------------- /Audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/Audio.cpp -------------------------------------------------------------------------------- /Audio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/Audio.hpp -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/CMakeSettings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/LICENSE -------------------------------------------------------------------------------- /PicoAudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/PicoAudio.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/README.md -------------------------------------------------------------------------------- /SuperSquareBros.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/SuperSquareBros.cpp -------------------------------------------------------------------------------- /SuperSquareBros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/SuperSquareBros.hpp -------------------------------------------------------------------------------- /assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/assets.yml -------------------------------------------------------------------------------- /assets/Super_Square_Bros_Spritesheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/assets/Super_Square_Bros_Spritesheet.tsx -------------------------------------------------------------------------------- /assets/boss.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/assets/boss.mp3 -------------------------------------------------------------------------------- /assets/end_level.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/assets/end_level.tmx -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/assets/image.png -------------------------------------------------------------------------------- /assets/level0.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/assets/level0.tmx -------------------------------------------------------------------------------- /assets/level1.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/assets/level1.tmx -------------------------------------------------------------------------------- /assets/level2.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/assets/level2.tmx -------------------------------------------------------------------------------- /assets/level3.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/assets/level3.tmx -------------------------------------------------------------------------------- /assets/level4.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/assets/level4.tmx -------------------------------------------------------------------------------- /assets/level5.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/assets/level5.tmx -------------------------------------------------------------------------------- /assets/level6.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/assets/level6.tmx -------------------------------------------------------------------------------- /assets/level7.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/assets/level7.tmx -------------------------------------------------------------------------------- /assets/level8-backup.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/assets/level8-backup.tmx -------------------------------------------------------------------------------- /assets/level8.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/assets/level8.tmx -------------------------------------------------------------------------------- /assets/level8_pico.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/assets/level8_pico.tmx -------------------------------------------------------------------------------- /assets/level9_pico.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/assets/level9_pico.tmx -------------------------------------------------------------------------------- /assets/level_character.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/assets/level_character.tmx -------------------------------------------------------------------------------- /assets/level_extra0.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/assets/level_extra0.tmx -------------------------------------------------------------------------------- /assets/level_extra0_unedited.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/assets/level_extra0_unedited.tmx -------------------------------------------------------------------------------- /assets/level_select - in progress.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/assets/level_select - in progress.tmx -------------------------------------------------------------------------------- /assets/level_select.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/assets/level_select.tmx -------------------------------------------------------------------------------- /assets/level_select_pico.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/assets/level_select_pico.tmx -------------------------------------------------------------------------------- /assets/level_title.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/assets/level_title.tmx -------------------------------------------------------------------------------- /assets/music_splash.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/assets/music_splash.mp3 -------------------------------------------------------------------------------- /assets/sound_coin.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/assets/sound_coin.mp3 -------------------------------------------------------------------------------- /assets/sound_enemydeath.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/assets/sound_enemydeath.mp3 -------------------------------------------------------------------------------- /assets/sound_enemyinjured.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/assets/sound_enemyinjured.mp3 -------------------------------------------------------------------------------- /assets/sound_enemythrow.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/assets/sound_enemythrow.mp3 -------------------------------------------------------------------------------- /assets/sound_jump.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/assets/sound_jump.mp3 -------------------------------------------------------------------------------- /assets/sound_playerdeath.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/assets/sound_playerdeath.mp3 -------------------------------------------------------------------------------- /assets/sound_playerinjured.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/assets/sound_playerinjured.mp3 -------------------------------------------------------------------------------- /assets/sound_select.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/assets/sound_select.mp3 -------------------------------------------------------------------------------- /assets/sound_select_old.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/assets/sound_select_old.mp3 -------------------------------------------------------------------------------- /assets/spritesheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/assets/spritesheet.png -------------------------------------------------------------------------------- /assets/template.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/assets/template.tmx -------------------------------------------------------------------------------- /hackyFastMode_docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/hackyFastMode_docs.txt -------------------------------------------------------------------------------- /metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/metadata.yml -------------------------------------------------------------------------------- /pico-assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePythonator/Super-Square-Bros/HEAD/pico-assets.yml --------------------------------------------------------------------------------