Maraiah/source/rozinante/editor/screen.rs

13 lines
219 B
Rust

//! 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