usecrate::utils::ScreenPoint;// default printing functions for ncurses
pubtraitWindow{/// Move the cursor to specific coordinates and print a string
fnmove_print(&mutself, point: ScreenPoint, text:&str);/// Print a string at the current cursor coordinates
fnprint(&mutself, text:&str);fnrefresh(&mutself);fnget_char(&mutself)->char;}