// This file is part of noxos and licensed under the MIT open source license #ifndef NOX_FONT_H #define NOX_FONT_H #include "utils/stdtypes.h" typedef struct { uint8_t width; uint8_t height; uint8_t glyph_size; uint8_t* buffer; } font_T; extern font_T g_font; #endif //NOX_FONT_H