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