2010-04-13 01:07:00 -03:00
|
|
|
#ifndef KEYBOARD_H
|
|
|
|
#define KEYBOARD_H
|
|
|
|
|
2010-04-21 04:14:39 -03:00
|
|
|
#include "deck.h"
|
2010-04-22 01:50:19 -03:00
|
|
|
#include "cursor.h"
|
2010-04-21 04:14:39 -03:00
|
|
|
|
2010-04-13 01:07:00 -03:00
|
|
|
#define KEY_SPACEBAR ' '
|
|
|
|
|
2010-04-21 04:14:39 -03:00
|
|
|
extern struct deck *deck;
|
2011-02-06 00:32:21 -02:00
|
|
|
extern struct cursor *cursor;
|
2010-04-21 04:14:39 -03:00
|
|
|
|
2011-02-06 00:32:21 -02:00
|
|
|
void handle_keyboard_event();
|
2010-04-13 01:07:00 -03:00
|
|
|
|
|
|
|
#endif
|