tty-solitaire/lib/keyboard.h
2011-02-06 04:51:49 -02:00

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