12 lines
124 B
C
12 lines
124 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
#define FONT_SIZE 13
|
|
|
|
struct font {
|
|
uint32_t height;
|
|
uint32_t width;
|
|
char *bitmap;
|
|
};
|