add score and moves

This commit is contained in:
hkz 2025-07-22 17:41:00 +02:00
commit 640c197525
11 changed files with 71 additions and 62 deletions

14
src/graph_misc_data.h Normal file
View file

@ -0,0 +1,14 @@
#ifndef _GRAPH_MISC_DATA_HEADER_
#define _GRAPH_MISC_DATA_HEADER_
#include <stdint.h>
#define SCORE_PIC_WIDTH_BYTES 8
#define SCORE_PIC_HEIGHT 14
extern const uint8_t score_pic_data[];
#define MOVES_PIC_WIDTH_BYTES 8
#define MOVES_PIC_HEIGHT 14
extern const uint8_t moves_pic_data[];
#endif /* _GRAPH_MISC_DATA_HEADER_ */