//! Map editor screen, or current UI state. pub trait Screen { /// Opens the editor with a new map. fn open_new(&mut self); /// Opens the editor with a new map. fn open_buf(&mut self, b: &[u8]); } // EOF