/*
 *	File:			5draw.h
 *	Purpose:		Declarations needed for game-specific player info.
 *	Created:		25 Nov 88
 *	Last Modified:	26 Jul 90
 *	Comments:
 *	History:
 *		25 Nov 88	Created.
 *		15 Jan 89	Added MAX_CARDS and drawn.
 *		26 Apr 89	Added MAX_RAISES and RAISE_LIMIT.
 *		29 May 89	Added score & count for hand evaluation. Include cards.h
 *					before this file.
 *		26 Jul 90	Changed MAX_PLAYERS to 9.
 */

# define	ANTE		3	/* amount each player must pay to start hand */
# define	MAX_PLAYERS	9	/* maximum number of players at table */
# define	MAX_PLAY	5	/* maximum number who can play any given hand */
# define	MAX_CARDS	5	/* maximum number cards in player's hand */
# define	MAX_RAISES	5	/* maximum number of raises per betting session */
# define	RAISE_LIMIT	50	/* maximum amount a player may raise */

typedef struct {
	int		cards[MAX_CARDS];		/* cards in player's hand */
	int		drawn;					/* drawn new cards yet this hand? */
	int		count[NUM_CARD_DENOMS]; /* # card denominations */
	int		score;					/* evaluation of hand (from whowon.h) */
	} GAMEINFO;

