11 lines
144 B
C
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
|