Package net.glowstone.block.state

Examples of net.glowstone.block.state.GlowBrewingStand


public class TEBrewingStand extends TEContainer {

    private int brewTime = 0;

    public TEBrewingStand(GlowBlock block) {
        super(block, new GlowBrewerInventory(new GlowBrewingStand(block, 0)));
        setSaveId("Cauldron");
    }
View Full Code Here


        tag.putInt("BrewTime", brewTime);
    }

    @Override
    public GlowBlockState getState() {
        return new GlowBrewingStand(block);
    }
View Full Code Here

TOP

Related Classes of net.glowstone.block.state.GlowBrewingStand

Copyright © 2018 www.massapicom. 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.