#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