tty-solitaire/src/keyboard.h

17 lines
266 B
C
Raw Normal View History

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