rc-tui/source/tui.hpp
2024-01-30 22:37:16 +01:00

12 lines
211 B
C++

#ifndef TUI_HPP
#define TUI_HPP
extern bool tui_init();
extern void tui_quit();
extern bool tui_control(const int &c);
extern void tui_redraw();
extern void tui_draw();
extern inline void tui_resize();
#endif