42_KFS/headers/font.h

9 lines
102 B
C
Raw Normal View History

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