⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 all_gfx.h

📁 NDS 游戏开发入门实例代码 字符显示 简易入门使用
💻 H
字号:
//Gfx converted using Mollusk's PAGfx Converter

//This file contains all the .h, for easier inclusion in a project

#ifndef ALL_GFX_H
#define ALL_GFX_H


// Background files : 
extern const char bigfont_Height;
extern const char bigfont_Sizes[256];
extern const int bigfont_Info[3]; // BgMode, Width, Height
extern const unsigned short bigfont_Map[1024] __attribute__ ((aligned (4))) ;  // Pal : bigfont_Pal
extern const unsigned char bigfont_Tiles[16512] __attribute__ ((aligned (4))) ;  // Pal : bigfont_Pal

extern const char smallfont_Height;
extern const char smallfont_Sizes[256];
extern const int smallfont_Info[3]; // BgMode, Width, Height
extern const unsigned short smallfont_Map[256] __attribute__ ((aligned (4))) ;  // Pal : smallfont_Pal
extern const unsigned char smallfont_Tiles[6336] __attribute__ ((aligned (4))) ;  // Pal : smallfont_Pal


// Palette files : 
extern const unsigned short bigfont_Pal[2] __attribute__ ((aligned (4))) ;
extern const unsigned short smallfont_Pal[2] __attribute__ ((aligned (4))) ;


#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -