hanafuda/play.h

12 lines
191 B
C
Raw Normal View History

2025-02-06 19:44:48 -05:00
#ifndef _HF_PLAY_
#define _HF_PLAY_
#include <stdbool.h>
#include "card.h"
bool valid_play(Hand *field, Card *played, Card *target);
2025-02-10 17:27:02 -05:00
Card *valid_target(Card *active, Hand *field);
2025-02-06 19:44:48 -05:00
#endif