Maraiah/source/rozinante/editor/record.rs

19 lines
301 B
Rust

//! Map editor records, or saved client state.
use crate::marathon::map;
impl Default for Record
{
#[inline]
fn default() -> Self {Self{info: map::minf::Minf::default()}}
}
/// Copyable, versioned map state.
#[derive(Clone, Debug)]
pub struct Record
{
pub info: map::minf::Minf,
}
// EOF