oxidized-curses 0.1.3

A rusty ncurses binding
Documentation
1
2
3
4
5
6
use crate::utils::ScreenPoint;

/// A window that isn't fixed in screen space
pub trait MoveableWindow {
    fn move_window(&mut self, point: ScreenPoint);
}