1234567891011121314151617181920 |
- #ifndef __FONTS_H__
- #define __FONTS_H__
- #include <stdint.h>
- typedef struct {
- const uint8_t width;
- const uint8_t height;
- const uint16_t *data;
- } FontDef;
- extern FontDef Font_7x10;
- extern FontDef Font_11x18;
- extern FontDef Font_16x26;
- extern FontDef LiberM_7x10;
- extern FontDef LiberM_10x16;
- extern FontDef SegoeUI_7x10;
- #endif // __FONTS_H__
|