Skip to content
screen.hh 179 B
Newer Older
Seblu's avatar
Seblu committed
#ifndef SCREEN_HH
# define SCREEN_HH_

# include <ncurses.h>

class Screen {
public:
  Screen();
  void init();
  void run();

private:
  WINDOW *msg_;
  WINDOW *cmd_;
};

#endif