timesynk/interface/curses.h

19 lines
212 B
C

#ifndef NCURSES_H
#define NCURSES_H
WINDOW * screen;
int cols;
int rows;
typedef struct {
char ch;
int fg;
int bg;
int attr;
} CursesTile;
extern CursesTile ascii_walls[];
int original_cursor;
#endif