add: tools: font_converter

This commit is contained in:
2024-12-11 20:31:39 +01:00
parent c6e2d52831
commit 570b848625
2 changed files with 77 additions and 0 deletions

9
headers/font.h Normal file
View File

@ -0,0 +1,9 @@
#pragma once
#include <stdint.h>
struct font {
uint32_t height;
uint32_t width;
char **bitmap;
};