15 lines
199 B
C
15 lines
199 B
C
#ifndef KEYBOARD_H
|
|
#define KEYBOARD_H
|
|
|
|
#include "deck.h"
|
|
#include "cursor.h"
|
|
|
|
#define KEY_SPACEBAR ' '
|
|
|
|
extern struct deck *deck;
|
|
extern struct cursor *cursor;
|
|
|
|
void handle_keyboard_event();
|
|
|
|
#endif
|