16 lines
247 B
C
16 lines
247 B
C
#ifndef _HF_FIELD_MULTIPLIER_
|
|
#define _HF_FIELD_MULTIPLIER_
|
|
|
|
typedef struct FieldMultiplier FieldMultiplier;
|
|
|
|
#include "card.h"
|
|
|
|
struct FieldMultiplier {
|
|
char *name;
|
|
int value;
|
|
};
|
|
|
|
FieldMultiplier *calculate_field_multiplier(Hand *h);
|
|
|
|
#endif
|