1/*
2 * Copyright 2021, Adrien Destugues <pulkomandy@pulkomandy.tk>
3 * Distributed under terms of the MIT license.
4 */
5
6#ifndef FONT_H
7#define FONT_H
8
9
10#include <stdint.h>
11
12
13struct FramebufferFont {
14	int glyphWidth;
15	int glyphHeight;
16	uint8_t data[];
17};
18
19
20extern FramebufferFont smallFont;
21extern FramebufferFont bigFont;
22
23
24#endif /* !FONT_H */
25