Maraiah/source/rozinante/editor/block.rs

20 lines
267 B
Rust
Raw Normal View History

2019-03-27 11:07:33 -07:00
use crate::marathon::map;
impl Default for Block
{
#[inline]
fn default() -> Self
{
Self{info: map::Minf::default()}
}
}
2019-03-27 14:02:15 -07:00
/// Copyable, versioned map state.
2019-03-31 11:58:36 -07:00
#[derive(Clone, Debug)]
pub(super) struct Block
2019-03-27 11:07:33 -07:00
{
2019-03-31 11:58:36 -07:00
pub(super) info: map::Minf,
2019-03-27 11:07:33 -07:00
}
// EOF