├── .gitignore ├── 3ds.cbp ├── LICENSE.txt ├── Makefile ├── README.md ├── resources ├── AppInfo ├── audio.wav ├── banner.png ├── icon.png └── template.rsf └── source └── main.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TricksterGuy/3ds-template/HEAD/.gitignore -------------------------------------------------------------------------------- /3ds.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TricksterGuy/3ds-template/HEAD/3ds.cbp -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TricksterGuy/3ds-template/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TricksterGuy/3ds-template/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TricksterGuy/3ds-template/HEAD/README.md -------------------------------------------------------------------------------- /resources/AppInfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TricksterGuy/3ds-template/HEAD/resources/AppInfo -------------------------------------------------------------------------------- /resources/audio.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TricksterGuy/3ds-template/HEAD/resources/audio.wav -------------------------------------------------------------------------------- /resources/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TricksterGuy/3ds-template/HEAD/resources/banner.png -------------------------------------------------------------------------------- /resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TricksterGuy/3ds-template/HEAD/resources/icon.png -------------------------------------------------------------------------------- /resources/template.rsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TricksterGuy/3ds-template/HEAD/resources/template.rsf -------------------------------------------------------------------------------- /source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TricksterGuy/3ds-template/HEAD/source/main.cpp --------------------------------------------------------------------------------