hanafuda/player.h

30 lines
449 B
C
Raw Normal View History

#ifndef _HF_PLAYER_
#define _HF_PLAYER_
typedef struct Player Player;
typedef enum PlayerSeat {
PLAYER,
RIGHT,
LEFT
} PlayerSeat;
#include "card.h"
struct Player {
PlayerSeat seat;
2025-02-22 13:44:18 -05:00
char *name;
2025-02-20 19:21:03 -05:00
Hand hand, scored;
Teyaku teyaku;
Dekiyaku dekiyaku;
DekiyakuAction dekiyaku_action;
int dekiyaku_score;
int points;
2025-02-26 19:47:18 -05:00
int last_round_points;
char points_string[20];
2025-02-23 05:10:42 -05:00
char teyaku_string[50];
bool ai;
bool dealer;
};
#endif