From f29f867a18ee82d6c79900420b6a6d5f66a75f18 Mon Sep 17 00:00:00 2001 From: sumuel Date: Wed, 15 Jul 2026 06:46:24 +0100 Subject: init --- input.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 input.h (limited to 'input.h') diff --git a/input.h b/input.h new file mode 100644 index 0000000..d5f026f --- /dev/null +++ b/input.h @@ -0,0 +1,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_ + -- cgit v1.2.3