mirror of
https://codeberg.org/hkzlab/TK2048.git
synced 2025-12-26 20:32:15 +11:00
add score and moves
This commit is contained in:
parent
1a3635fc9a
commit
640c197525
11 changed files with 71 additions and 62 deletions
14
src/graph_misc_data.h
Normal file
14
src/graph_misc_data.h
Normal 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_ */
|
||||
Loading…
Add table
Add a link
Reference in a new issue