You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
383 B
25 lines
383 B
5 years ago
|
/**
|
||
|
* TODO file description
|
||
|
*
|
||
|
* Created on 2020/01/04.
|
||
|
*/
|
||
|
|
||
|
#ifndef REFLOWER_FONT_H
|
||
|
#define REFLOWER_FONT_H
|
||
|
|
||
|
#include "font.h"
|
||
|
#include "utf8.h"
|
||
|
#include <stdint.h>
|
||
|
|
||
|
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
|