2011-06-06 04:33:49 +00:00
|
|
|
#ifndef TTY_SOLITAIRE_KEYBOARD_H
|
|
|
|
#define TTY_SOLITAIRE_KEYBOARD_H
|
2010-04-13 04:07:00 +00:00
|
|
|
|
2010-04-21 07:14:39 +00:00
|
|
|
#include "deck.h"
|
2010-04-22 04:50:19 +00:00
|
|
|
#include "cursor.h"
|
2010-04-21 07:14:39 +00:00
|
|
|
|
2011-05-31 05:45:49 +00:00
|
|
|
#define KEY_SPACEBAR 32
|
|
|
|
#define KEY_ESCAPE 27
|
2010-04-13 04:07:00 +00:00
|
|
|
|
2010-04-21 07:14:39 +00:00
|
|
|
extern struct deck *deck;
|
2011-02-06 02:32:21 +00:00
|
|
|
extern struct cursor *cursor;
|
2011-06-08 05:36:46 +00:00
|
|
|
extern struct game game;
|
2010-04-21 07:14:39 +00:00
|
|
|
|
2011-06-07 03:27:43 +00:00
|
|
|
void keyboard_event();
|
2010-04-13 04:07:00 +00:00
|
|
|
|
|
|
|
#endif
|