hanafuda/play.h
2025-02-06 19:44:48 -05:00

11 lines
144 B
C

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