├── .gitignore ├── Makefile ├── README.md ├── assets ├── bgm │ └── Mars.wav ├── font │ └── MMXSNES.ttf ├── img │ └── battleback8.png └── sfx │ └── hop.wav └── src └── main.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | **/.DS_Store 3 | bin 4 | build -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zbtnot/hello-miyoo/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zbtnot/hello-miyoo/HEAD/README.md -------------------------------------------------------------------------------- /assets/bgm/Mars.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zbtnot/hello-miyoo/HEAD/assets/bgm/Mars.wav -------------------------------------------------------------------------------- /assets/font/MMXSNES.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zbtnot/hello-miyoo/HEAD/assets/font/MMXSNES.ttf -------------------------------------------------------------------------------- /assets/img/battleback8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zbtnot/hello-miyoo/HEAD/assets/img/battleback8.png -------------------------------------------------------------------------------- /assets/sfx/hop.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zbtnot/hello-miyoo/HEAD/assets/sfx/hop.wav -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zbtnot/hello-miyoo/HEAD/src/main.cpp --------------------------------------------------------------------------------