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