mc173 0.2.0

Minecraft beta 1.7.3 base data structures and logic for running a world
Documentation
1
2
3
4
5
6
7
8
//! Sign block entity.


#[derive(Debug, Clone, Default)]
pub struct SignBlockEntity {
    /// Text line of this sign block.
    pub lines: Box<[String; 4]>,
}