2025-02-04 18:47:56 -05:00
|
|
|
#ifndef _HF_FIELD_MULTIPLIER_
|
|
|
|
#define _HF_FIELD_MULTIPLIER_
|
|
|
|
|
|
|
|
typedef struct FieldMultiplier FieldMultiplier;
|
|
|
|
|
|
|
|
#include "card.h"
|
|
|
|
|
|
|
|
struct FieldMultiplier {
|
|
|
|
char *name;
|
2025-02-22 13:50:38 -05:00
|
|
|
char *explanation;
|
2025-02-04 18:47:56 -05:00
|
|
|
int value;
|
|
|
|
};
|
|
|
|
|
2025-02-15 15:51:53 -05:00
|
|
|
FieldMultiplier *calculate_field_multiplier(Hand *h);
|
2025-02-04 18:47:56 -05:00
|
|
|
|
|
|
|
#endif
|