2009-03-04 08:01:04 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* Visual Boy Advance GX
|
|
|
|
*
|
|
|
|
* Tantric March 2009
|
|
|
|
*
|
|
|
|
* filelist.h
|
|
|
|
*
|
2009-04-10 05:19:29 +02:00
|
|
|
* Contains a list of all of the files in the images/ folder
|
2009-03-04 08:01:04 +01:00
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _FILELIST_H_
|
|
|
|
#define _FILELIST_H_
|
|
|
|
|
|
|
|
#include <gccore.h>
|
|
|
|
|
|
|
|
extern const u8 font_ttf[];
|
|
|
|
extern const u32 font_ttf_size;
|
|
|
|
|
|
|
|
extern const u8 player1_point_png[];
|
|
|
|
extern const u32 player1_point_png_size;
|
|
|
|
|
|
|
|
extern const u8 player2_point_png[];
|
|
|
|
extern const u32 player2_point_png_size;
|
|
|
|
|
|
|
|
extern const u8 player3_point_png[];
|
|
|
|
extern const u32 player3_point_png_size;
|
|
|
|
|
|
|
|
extern const u8 player4_point_png[];
|
|
|
|
extern const u32 player4_point_png_size;
|
|
|
|
|
|
|
|
extern const u8 player1_grab_png[];
|
|
|
|
extern const u32 player1_grab_png_size;
|
|
|
|
|
|
|
|
extern const u8 player2_grab_png[];
|
|
|
|
extern const u32 player2_grab_png_size;
|
|
|
|
|
|
|
|
extern const u8 player3_grab_png[];
|
|
|
|
extern const u32 player3_grab_png_size;
|
|
|
|
|
|
|
|
extern const u8 player4_grab_png[];
|
|
|
|
extern const u32 player4_grab_png_size;
|
|
|
|
|
|
|
|
#endif
|