tty-solitaire/src/display.h

24 lines
454 B
C
Raw Normal View History

2010-04-03 07:11:27 +00:00
#ifndef DISPLAY_H
#define DISPLAY_H
2011-02-06 06:10:54 +00:00
#include "card.h"
#include "stack.h"
#include "deck.h"
2011-02-17 01:50:29 +00:00
#include "cursor.h"
#define EMPTY_STACKS_NUMBER 13
2010-04-03 19:34:45 +00:00
#define BLACK_ON_WHITE 1
#define RED_ON_WHITE 2
#define WHITE_ON_BLUE 3
#define WHITE_ON_GREEN 4
2010-04-03 19:34:45 +00:00
void erase_stack(struct stack *);
2010-04-03 19:34:45 +00:00
void draw_card(struct card *);
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 *);
void erase_cursor(struct cursor *);
2010-04-03 07:11:27 +00:00
#endif