28 lines
391 B
C
28 lines
391 B
C
#ifndef _HF_PLAYER_
|
|
#define _HF_PLAYER_
|
|
|
|
typedef struct Player Player;
|
|
typedef enum PlayerSeat {
|
|
PLAYER,
|
|
RIGHT,
|
|
LEFT
|
|
} PlayerSeat;
|
|
|
|
#include "card.h"
|
|
|
|
struct Player {
|
|
PlayerSeat seat;
|
|
Hand hand;
|
|
Hand scored;
|
|
Teyaku teyaku;
|
|
Dekiyaku dekiyaku;
|
|
DekiyakuAction dekiyaku_action;
|
|
int dekiyaku_score;
|
|
int points;
|
|
char points_string[20];
|
|
bool ai;
|
|
bool dealer;
|
|
};
|
|
|
|
#endif
|