Maraiah/source/rozinante/editor/block.rs

20 lines
279 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
{
2019-04-01 00:39:47 -07:00
Self{info: map::minf::Minf::default()}
2019-03-27 11:07:33 -07:00
}
}
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-04-01 00:39:47 -07:00
pub(super) info: map::minf::Minf,
2019-03-27 11:07:33 -07:00
}
// EOF