19 lines
303 B
C
19 lines
303 B
C
|
#ifndef _HF_OPTIONS_
|
||
|
#define _HF_OPTIONS_
|
||
|
|
||
|
typedef struct Options Options;
|
||
|
|
||
|
#include "game.h"
|
||
|
|
||
|
struct Options {
|
||
|
int kan_value;
|
||
|
int number_of_rounds;
|
||
|
Color card_backs;
|
||
|
float deal_speed;
|
||
|
};
|
||
|
|
||
|
void load_options_from_game(Game *g, Options *o);
|
||
|
void save_options_to_game(Game *g, Options *o);
|
||
|
|
||
|
#endif
|