19 lines
209 B
C
19 lines
209 B
C
|
#include <stdbool.h>
|
||
|
|
||
|
#ifndef GAME_H
|
||
|
#define GAME_H
|
||
|
|
||
|
void initGame();
|
||
|
|
||
|
bool isRunning();
|
||
|
|
||
|
void handleInput(char ch);
|
||
|
|
||
|
// Overlay
|
||
|
// Draws cursor and cursor position
|
||
|
void showCurPos();
|
||
|
|
||
|
bool endgame();
|
||
|
|
||
|
#endif
|