42_KFS/headers/font.h

12 lines
124 B
C
Raw Normal View History

2024-12-11 14:31:39 -05:00
#pragma once
#include <stdint.h>
#define FONT_SIZE 13
2024-12-11 14:31:39 -05:00
struct font {
uint32_t height;
uint32_t width;
char *bitmap;
};