11 lines
121 B
C
11 lines
121 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
struct font {
|
|
uint32_t height;
|
|
uint32_t width;
|
|
uint32_t yoffset;
|
|
char *bitmap;
|
|
};
|