12 lines
125 B
C
12 lines
125 B
C
#pragma once
|
|
|
|
#include "types.h"
|
|
#include <stdint.h>
|
|
|
|
struct font {
|
|
u32 height;
|
|
u32 width;
|
|
u32 yoffset;
|
|
char *bitmap;
|
|
};
|