├── LICENSE ├── Makefile ├── README.md ├── include ├── C2D_helper.h ├── common.h ├── dialog.h ├── friend.h ├── fs.h ├── keyboard.h ├── log.h ├── menus │ ├── menu_friendcard.h │ ├── menu_friendlist.h │ └── menu_main.h ├── screenshot.h ├── services │ └── frd.h ├── status_bar.h ├── textures.h ├── tinyxml2_helper.h ├── touch.h └── utils.h ├── res ├── app.rsf ├── banner.png ├── banner.wav ├── drawable │ ├── battery_1.png │ ├── battery_2.png │ ├── battery_3.png │ ├── battery_4.png │ ├── battery_charge.png │ ├── ic_material_light_add.png │ ├── ic_material_light_backup.png │ ├── ic_material_light_delete.png │ ├── ic_material_light_search.png │ └── sprites.t3s ├── ic_launcher_friendmii.png └── logo.bcma.lz └── source ├── C2D_helper.c ├── dialog.c ├── friend.c ├── fs.c ├── keyboard.c ├── log.c ├── main.c ├── menus ├── menu_friendcard.c ├── menu_friendlist.c └── menu_main.c ├── screenshot.c ├── services └── frd.c ├── status_bar.c ├── textures.c ├── tinyxml2_helper.cpp ├── touch.c └── utils.c /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/README.md -------------------------------------------------------------------------------- /include/C2D_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/include/C2D_helper.h -------------------------------------------------------------------------------- /include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/include/common.h -------------------------------------------------------------------------------- /include/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/include/dialog.h -------------------------------------------------------------------------------- /include/friend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/include/friend.h -------------------------------------------------------------------------------- /include/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/include/fs.h -------------------------------------------------------------------------------- /include/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/include/keyboard.h -------------------------------------------------------------------------------- /include/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/include/log.h -------------------------------------------------------------------------------- /include/menus/menu_friendcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/include/menus/menu_friendcard.h -------------------------------------------------------------------------------- /include/menus/menu_friendlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/include/menus/menu_friendlist.h -------------------------------------------------------------------------------- /include/menus/menu_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/include/menus/menu_main.h -------------------------------------------------------------------------------- /include/screenshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/include/screenshot.h -------------------------------------------------------------------------------- /include/services/frd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/include/services/frd.h -------------------------------------------------------------------------------- /include/status_bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/include/status_bar.h -------------------------------------------------------------------------------- /include/textures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/include/textures.h -------------------------------------------------------------------------------- /include/tinyxml2_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/include/tinyxml2_helper.h -------------------------------------------------------------------------------- /include/touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/include/touch.h -------------------------------------------------------------------------------- /include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/include/utils.h -------------------------------------------------------------------------------- /res/app.rsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/res/app.rsf -------------------------------------------------------------------------------- /res/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/res/banner.png -------------------------------------------------------------------------------- /res/banner.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/res/banner.wav -------------------------------------------------------------------------------- /res/drawable/battery_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/res/drawable/battery_1.png -------------------------------------------------------------------------------- /res/drawable/battery_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/res/drawable/battery_2.png -------------------------------------------------------------------------------- /res/drawable/battery_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/res/drawable/battery_3.png -------------------------------------------------------------------------------- /res/drawable/battery_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/res/drawable/battery_4.png -------------------------------------------------------------------------------- /res/drawable/battery_charge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/res/drawable/battery_charge.png -------------------------------------------------------------------------------- /res/drawable/ic_material_light_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/res/drawable/ic_material_light_add.png -------------------------------------------------------------------------------- /res/drawable/ic_material_light_backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/res/drawable/ic_material_light_backup.png -------------------------------------------------------------------------------- /res/drawable/ic_material_light_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/res/drawable/ic_material_light_delete.png -------------------------------------------------------------------------------- /res/drawable/ic_material_light_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/res/drawable/ic_material_light_search.png -------------------------------------------------------------------------------- /res/drawable/sprites.t3s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/res/drawable/sprites.t3s -------------------------------------------------------------------------------- /res/ic_launcher_friendmii.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/res/ic_launcher_friendmii.png -------------------------------------------------------------------------------- /res/logo.bcma.lz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/res/logo.bcma.lz -------------------------------------------------------------------------------- /source/C2D_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/source/C2D_helper.c -------------------------------------------------------------------------------- /source/dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/source/dialog.c -------------------------------------------------------------------------------- /source/friend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/source/friend.c -------------------------------------------------------------------------------- /source/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/source/fs.c -------------------------------------------------------------------------------- /source/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/source/keyboard.c -------------------------------------------------------------------------------- /source/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/source/log.c -------------------------------------------------------------------------------- /source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/source/main.c -------------------------------------------------------------------------------- /source/menus/menu_friendcard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/source/menus/menu_friendcard.c -------------------------------------------------------------------------------- /source/menus/menu_friendlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/source/menus/menu_friendlist.c -------------------------------------------------------------------------------- /source/menus/menu_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/source/menus/menu_main.c -------------------------------------------------------------------------------- /source/screenshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/source/screenshot.c -------------------------------------------------------------------------------- /source/services/frd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/source/services/frd.c -------------------------------------------------------------------------------- /source/status_bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/source/status_bar.c -------------------------------------------------------------------------------- /source/textures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/source/textures.c -------------------------------------------------------------------------------- /source/tinyxml2_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/source/tinyxml2_helper.cpp -------------------------------------------------------------------------------- /source/touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/source/touch.c -------------------------------------------------------------------------------- /source/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/FriendMii/HEAD/source/utils.c --------------------------------------------------------------------------------