candytuft/firmware/main/include/lcd/FontBase.h
2026-01-22 19:54:53 -06:00

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;