all_gfx.h (2574B)
1 //Gfx converted using Mollusk's PAGfx Converter 2 3 //This file contains all the .h, for easier inclusion in a project 4 5 #ifndef ALL_GFX_H 6 #define ALL_GFX_H 7 8 #ifndef PAGfx_struct 9 typedef struct{ 10 void *Map; 11 int MapSize; 12 void *Tiles; 13 int TileSize; 14 void *Palette; 15 int *Info; 16 } PAGfx_struct; 17 #endif 18 19 20 // Sprite files : 21 extern const unsigned char canard0_Sprite[1024] __attribute__ ((aligned (4))) ; // Pal : canard_Pal 22 extern const unsigned char canard1_Sprite[1024] __attribute__ ((aligned (4))) ; // Pal : canard_Pal 23 extern const unsigned char canard2_Sprite[1024] __attribute__ ((aligned (4))) ; // Pal : canard_Pal 24 extern const unsigned char canard3_Sprite[1024] __attribute__ ((aligned (4))) ; // Pal : canard_Pal 25 extern const unsigned char canard4_Sprite[1024] __attribute__ ((aligned (4))) ; // Pal : canard_Pal 26 extern const unsigned char canard5_Sprite[1024] __attribute__ ((aligned (4))) ; // Pal : canard_Pal 27 extern const unsigned char canard6_Sprite[1024] __attribute__ ((aligned (4))) ; // Pal : canard_Pal 28 extern const unsigned char canard7_Sprite[1024] __attribute__ ((aligned (4))) ; // Pal : canard_Pal 29 30 // Background files : 31 extern const int background0_Info[3]; // BgMode, Width, Height 32 extern const unsigned short background0_Map[768] __attribute__ ((aligned (4))) ; // Pal : background0_Pal 33 extern const unsigned char background0_Tiles[10752] __attribute__ ((aligned (4))) ; // Pal : background0_Pal 34 extern PAGfx_struct background0; // background pointer 35 36 extern const int background1_Info[3]; // BgMode, Width, Height 37 extern const unsigned short background1_Map[768] __attribute__ ((aligned (4))) ; // Pal : background1_Pal 38 extern const unsigned char background1_Tiles[1280] __attribute__ ((aligned (4))) ; // Pal : background1_Pal 39 extern PAGfx_struct background1; // background pointer 40 41 extern const int background2_Info[3]; // BgMode, Width, Height 42 extern const unsigned short background2_Map[768] __attribute__ ((aligned (4))) ; // Pal : background2_Pal 43 extern const unsigned char background2_Tiles[64] __attribute__ ((aligned (4))) ; // Pal : background2_Pal 44 extern PAGfx_struct background2; // background pointer 45 46 47 // Palette files : 48 extern const unsigned short canard_Pal[3] __attribute__ ((aligned (4))) ; 49 extern const unsigned short background0_Pal[4] __attribute__ ((aligned (4))) ; 50 extern const unsigned short background1_Pal[28] __attribute__ ((aligned (4))) ; 51 extern const unsigned short background2_Pal[2] __attribute__ ((aligned (4))) ; 52 53 54 #endif 55