Skip to content
Snippets Groups Projects
Unverified Commit 63d78978 authored by Leon Dietrich's avatar Leon Dietrich
Browse files

add: began writing view file

parent 7b1db7b7
No related branches found
No related tags found
No related merge requests found
#include "../ui/View.h"
namespace rmrf {
int main() {
ui::init_ui();
ui::destroy_ui();
return 0;
}
}
#include <ncurses/ncursesw.h>
#include "View.h"
namespace rmrf {
namespace ui {
void init_ui() {
initscr();
}
void destroy_ui() {
endwin();
}
}
}
#ifndef VIEW_H
#define VIEW_H
namespace rmrf {
namespace ui {
void init_ui( void );
void destroy_ui( void );
}
}
#endif
-lncursesw
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment