Added functions to draw the game's cards.

This commit is contained in:
Murilo Soares Pereira
2010-04-11 17:11:45 -03:00
parent d47406f1e4
commit 65a8b5e0e3
2 changed files with 45 additions and 0 deletions
+3
View File
@@ -2,6 +2,7 @@
#define DISPLAY_H
#include "card.h"
#include "deck.h"
#define EMPTY_STACKS_NUMBER 13
@@ -24,5 +25,7 @@ void draw_suit(struct card *);
void draw_front(struct card *);
void draw_back(struct card *);
void draw_card(struct card *);
void draw_stack(struct stack *);
void draw_game(struct deck *);
#endif