tty-solitaire/lib/game.h

19 lines
294 B
C
Raw Normal View History

#ifndef GAME_H
#define GAME_H
#include "deck.h"
#include "cursor.h"
#define NUMBER_OF_CARDS 52
extern const char *program_name;
struct deck *deck;
struct cursor *cursor;
2011-02-17 00:26:18 +00:00
void move_card(struct stack **, struct stack **);
void greet_player();
void initialize_game();
void end_game();
#endif