touchscreengames/Core/Inc/fonts.h
2025-07-09 22:54:38 +02:00

17 lines
380 B
C

#ifndef __FONTS_H__
#define __FONTS_H__
#include <stdint.h>
#define FONT1 Arial_Narrow8x12
#define FONT2 Arial_Narrow10x13
#define FONT3 Arial_Narrow12x16
#define FONT4 Arial_Narrow15x19
extern const uint8_t Arial_Narrow8x12[];
extern const uint8_t Arial_Narrow10x13[];
extern const uint8_t Arial_Narrow12x16[];
extern const uint8_t Arial_Narrow15x19[];
#endif // __FONTS_H__