42_KFS/headers/font.h

11 lines
121 B
C
Raw Permalink Normal View History

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