hanafuda/play.h

12 lines
191 B
C

#ifndef _HF_PLAY_
#define _HF_PLAY_
#include <stdbool.h>
#include "card.h"
bool valid_play(Hand *field, Card *played, Card *target);
Card *valid_target(Card *active, Hand *field);
#endif