Examples of GlowChest


Examples of net.glowstone.block.state.GlowChest

* Tile entity for Chests.
*/
public class TEChest extends TEContainer {

    public TEChest(GlowBlock block) {
        super(block, new GlowInventory(new GlowChest(block), InventoryType.CHEST));
        setSaveId("Chest");
    }
View Full Code Here

Examples of net.glowstone.block.state.GlowChest

        setSaveId("Chest");
    }

    @Override
    public GlowBlockState getState() {
        return new GlowChest(block);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.