1
0
Fork 0
mirror of https://gitlab.com/niansa/llama_nds.git synced 2025-03-06 20:53:28 +01:00
llama_nds/font.h
2023-04-07 18:43:33 +02:00

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