summaryrefslogtreecommitdiff
path: root/csrc/card.h
blob: b1a086e7058e915d1fae03192f399632aa61b068 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdint.h>

typedef struct
{
	const char *name_ptr;
	uint8_t init_amount;
	uint8_t price;
	uint8_t f6;
	uint8_t f7;
} rich4_card;
extern rich4_card cards_table[];

typedef int (*card_func)(void);
extern card_func card_functions[];