42_KFS/headers/font.h

12 lines
125 B
C
Raw Normal View History

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