2011-06-03 06:22:48 +00:00
|
|
|
#ifndef TTY_SOLITAIRE_DRAW_H
|
|
|
|
#define TTY_SOLITAIRE_DRAW_H
|
2010-04-03 07:11:27 +00:00
|
|
|
|
2011-02-06 06:10:54 +00:00
|
|
|
#include "card.h"
|
|
|
|
#include "stack.h"
|
2010-04-11 20:11:45 +00:00
|
|
|
#include "deck.h"
|
2011-02-17 01:50:29 +00:00
|
|
|
#include "cursor.h"
|
2010-04-05 00:44:31 +00:00
|
|
|
|
2010-04-03 19:34:45 +00:00
|
|
|
#define BLACK_ON_WHITE 1
|
|
|
|
#define RED_ON_WHITE 2
|
|
|
|
#define WHITE_ON_BLUE 3
|
2010-04-21 07:14:39 +00:00
|
|
|
#define WHITE_ON_GREEN 4
|
2010-04-03 19:34:45 +00:00
|
|
|
|
|
|
|
void draw_card(struct card *);
|
2010-04-11 20:11:45 +00:00
|
|
|
void draw_stack(struct stack *);
|
2011-02-06 02:22:16 +00:00
|
|
|
void draw_deck(struct deck *);
|
2011-02-17 01:50:29 +00:00
|
|
|
void draw_cursor(struct cursor *);
|
2011-06-03 03:18:17 +00:00
|
|
|
void erase_card(struct card *);
|
|
|
|
void erase_stack(struct stack *);
|
2011-02-17 01:50:29 +00:00
|
|
|
void erase_cursor(struct cursor *);
|
2010-04-03 07:11:27 +00:00
|
|
|
|
|
|
|
#endif
|