tty-solitaire/lib/game.h

18 lines
244 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;
void greet_player();
void initialize_game();
void end_game();
#endif