ncurses-gameoflife/game.h

19 lines
209 B
C
Raw Normal View History

#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