9 lines
No EOL
152 B
C
9 lines
No EOL
152 B
C
#pragma once
|
|
#include <stdint.h>
|
|
|
|
typedef struct font_t {
|
|
const char* fTable;
|
|
uint16_t width;
|
|
uint16_t height;
|
|
uint16_t cSize;
|
|
} font_t; |