2023-03-10 10:32:50 +00:00
|
|
|
// This file is part of noxos and licensed under the MIT open source license
|
2023-02-20 08:29:45 +00:00
|
|
|
|
|
|
|
#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
|