Skip to content
Snippets Groups Projects
View.cpp 159 B
Newer Older
#include <ncurses/ncursesw.h>

#include "View.h"

namespace rmrf {
Benny Baumann's avatar
Benny Baumann committed
namespace ui {
Benny Baumann's avatar
Benny Baumann committed
void init_ui() {
    initscr();
}
Benny Baumann's avatar
Benny Baumann committed
void destroy_ui() {
    endwin();
}