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
9
10
//! Chest block entity.

use crate::item::ItemStack;


#[derive(Debug, Clone, Default)]
pub struct ChestBlockEntity {
    /// The inventory of the chest.
    pub inv: Box<[ItemStack; 27]>,
}