mirror of
https://codeberg.org/hkzlab/TK2048.git
synced 2025-12-31 00:39:19 +11:00
16 lines
248 B
C
16 lines
248 B
C
#ifndef _DLOG_DATA_HEADER_
|
|
#define _DLOG_DATA_HEADER_
|
|
|
|
#include <stdint.h>
|
|
|
|
#define DLOG_MODE_START 0
|
|
#define DLOG_MODE_WIN 1
|
|
#define DLOG_MODE_LOSE 2
|
|
|
|
|
|
typedef struct {
|
|
uint8_t mode;
|
|
uint16_t score;
|
|
} dlog_data;
|
|
|
|
#endif /* _DLOG_DATA_HEADER_ */
|