mirror of
https://github.com/dborth/vbagx.git
synced 2024-11-01 08:25:12 +01:00
44 lines
1.1 KiB
C
44 lines
1.1 KiB
C
|
/****************************************************************************
|
||
|
* Visual Boy Advance GX
|
||
|
*
|
||
|
* Tantric March 2009
|
||
|
*
|
||
|
* filelist.h
|
||
|
*
|
||
|
* Contains a list of all of the files in the images/ folder
|
||
|
***************************************************************************/
|
||
|
|
||
|
#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
|