21 lines
278 B
C
21 lines
278 B
C
|
#ifndef UI_UI_H
|
||
|
|
||
|
#include <ncurses.h>
|
||
|
|
||
|
//----------------------------------------------------------------
|
||
|
|
||
|
namespace ui {
|
||
|
class text_ui {
|
||
|
public:
|
||
|
text_ui();
|
||
|
~text_ui();
|
||
|
|
||
|
void refresh();
|
||
|
};
|
||
|
};
|
||
|
|
||
|
|
||
|
//----------------------------------------------------------------
|
||
|
|
||
|
#endif
|