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); }