2010-12-29 16:42:26 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* filelist.h
|
|
|
|
* Contains a list of all of the files in the images, fonts, sounds folders
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _FILELIST_H_
|
|
|
|
#define _FILELIST_H_
|
|
|
|
|
|
|
|
#include <gccore.h>
|
|
|
|
|
|
|
|
extern const u8 app_booter_dol[];
|
|
|
|
extern const u32 app_booter_dol_size;
|
|
|
|
|
|
|
|
extern const u8 background_png[];
|
|
|
|
extern const u32 background_png_size;
|
|
|
|
|
|
|
|
extern const u8 background169_png[];
|
|
|
|
extern const u32 background169_png_size;
|
|
|
|
|
|
|
|
#endif
|