Skip to main content

oxidized_curses/window/
moveable_window.rs

1use crate::utils::ScreenPoint;
2
3/// A window that isn't fixed in screen space
4pub trait MoveableWindow {
5    fn move_window(&mut self, point: ScreenPoint);
6}