tty-solitaire/lib/keyboard.h
Murilo Pereira 58fff35a20 WIP.
2011-02-05 23:42:14 -02:00

20 lines
408 B
C

#ifndef KEYBOARD_H
#define KEYBOARD_H
#include "deck.h"
#include "cursor.h"
#define KEY_SPACEBAR ' '
extern struct deck *deck;
void mark_origin(struct cursor *);
struct stack *cursor_stack(struct cursor *);
bool cursor_on_stack(struct cursor *, struct stack *);
bool cursor_on_invalid_spot(struct cursor *);
void handle_stock_event();
void handle_card_movement(struct cursor *);
int key_event();
#endif