summaryrefslogtreecommitdiffstats
path: root/input.h
blob: d5f026fedea1eba0f8ed968d7e08faeda942a982 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef INPUT_H_   /* Include guard */
#define INPUT_H_

/* declare cursor position */
extern int cursorPosX;
extern int cursorPosY;

/* Error stuff */

extern int turns;

/* The piece to be moved goes here */
extern char hand;

int InputBoard(char board[8][8], int keypress);  /* declare the function */

#endif // INPUT_H_