mc173/block_entity/
chest.rs

1//! Chest block entity.
2
3use crate::item::ItemStack;
4
5
6#[derive(Debug, Clone, Default)]
7pub struct ChestBlockEntity {
8    /// The inventory of the chest.
9    pub inv: Box<[ItemStack; 27]>,
10}