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
//! Note block block entity.


#[derive(Debug, Clone, Default)]
pub struct NoteBlockBlockEntity {
    /// The note to play.
    pub note: u8,
}