2021-12-11 03:11:40 -05:00
|
|
|
#ifndef _FONTS_H
|
|
|
|
#define _FONTS_H
|
2022-01-19 16:58:01 -05:00
|
|
|
extern const unsigned int font_exo_compressed_size;
|
|
|
|
extern const unsigned int font_exo_compressed_data[];
|
|
|
|
extern const unsigned int font_liberationSans_compressed_size;
|
|
|
|
extern const unsigned int font_liberationSans_compressed_data[];
|
|
|
|
extern const unsigned int font_mononoki_compressed_size;
|
|
|
|
extern const unsigned int font_mononoki_compressed_data[];
|
|
|
|
extern const unsigned int font_plexSans_compressed_size;
|
|
|
|
extern const unsigned int font_plexSans_compressed_data[];
|
|
|
|
extern const unsigned int font_plexMono_compressed_size;
|
|
|
|
extern const unsigned int font_plexMono_compressed_data[];
|
|
|
|
extern const unsigned int font_proggyClean_compressed_size;
|
|
|
|
extern const unsigned int font_proggyClean_compressed_data[];
|
|
|
|
extern const unsigned int font_ptMono_compressed_size;
|
|
|
|
extern const unsigned int font_ptMono_compressed_data[];
|
|
|
|
extern const unsigned int font_unifont_compressed_size;
|
|
|
|
extern const unsigned int font_unifont_compressed_data[];
|
2021-12-21 00:30:55 -05:00
|
|
|
extern const unsigned int iconFont_compressed_size;
|
|
|
|
extern const unsigned int iconFont_compressed_data[];
|
2022-01-19 16:58:01 -05:00
|
|
|
|
|
|
|
extern const unsigned int* builtinFont[];
|
|
|
|
extern const unsigned int builtinFontLen[];
|
|
|
|
extern const unsigned int* builtinFontM[];
|
|
|
|
extern const unsigned int builtinFontMLen[];
|
2021-12-21 00:30:55 -05:00
|
|
|
#endif
|