hanafuda/points.h

11 lines
174 B
C

#ifndef _HF_POINTS_
#define _HF_POINTS_
#include "card.h"
#include "game.h"
int hand_points(Hand *hand);
void kan_points_string(Game *g, int points, char *string);
#endif