mirror of
https://gitlab.com/niansa/llama_nds.git
synced 2025-03-06 20:53:28 +01:00
13 lines
277 B
C
13 lines
277 B
C
#include <stdbool.h>
|
|
#define FONT_HEIGHT 16
|
|
#define FONT_WIDTH 8
|
|
#define FONT_SIZE FONT_HEIGHT * FONT_WIDTH
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
extern const bool fontBitmapUnk[FONT_SIZE];
|
|
const bool *font_get_character(const char character);
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|