Maraiah/source/rozinante/editor/session.rs

21 lines
258 B
Rust

//! Map editor session, or current client state.
impl Session
{
/// 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])
{
}
}
struct Session
{
}
// EOF