13 lines
127 B
C
13 lines
127 B
C
#ifndef UI_H
|
|
#define UI_H
|
|
|
|
#include <ncurses.h>
|
|
#include "gamelogic.h"
|
|
|
|
void init();
|
|
void render();
|
|
void main_loop();
|
|
|
|
|
|
#endif
|