2010-04-13 04:07:00 +00:00
|
|
|
#ifndef KEYBOARD_H
|
|
|
|
#define KEYBOARD_H
|
|
|
|
|
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
|
|
|
|
2010-04-13 04:07:00 +00:00
|
|
|
#define KEY_SPACEBAR ' '
|
|
|
|
|
2010-04-21 07:14:39 +00:00
|
|
|
extern struct deck *deck;
|
2011-02-06 02:32:21 +00:00
|
|
|
extern struct cursor *cursor;
|
2010-04-21 07:14:39 +00:00
|
|
|
|
2011-02-06 02:32:21 +00:00
|
|
|
void handle_keyboard_event();
|
2010-04-13 04:07:00 +00:00
|
|
|
|
|
|
|
#endif
|