Skip to content
Snippets Groups Projects
View.cpp 221 B
Newer Older
#ifdef __UNIX__
	#include <ncurses/cursesw.h>
#else
	#include <ncursesw/ncurses.h>
#endif
display::display() : m{} {
Benny Baumann's avatar
Benny Baumann committed
    initscr();
}
Benny Baumann's avatar
Benny Baumann committed
    endwin();
}