/** * TODO file description * * Created on 2020/01/04. */ #ifndef REFLOWER_FONT_H #define REFLOWER_FONT_H #include "font.h" #include "utf8.h" #include struct FontSymbol { union { const char symbol[4]; const uint32_t uint; }; uint8_t graphic[5]; }; const struct FontSymbol *Font_GetSymbol(struct Utf8Char ch); #endif //REFLOWER_FONT_H