All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.nukkit.block.BlockCandleGreen Maven / Gradle / Ivy

There is a newer version: 1.20.40-r1
Show newest version
package cn.nukkit.block;

/**
 * @author Gabriel8579
 * @since 2021-08-13
 */


public class BlockCandleGreen extends BlockCandle {

    public BlockCandleGreen() { this(0); }

    public BlockCandleGreen(int meta) { super(meta); }

    @Override
    public int getId() {
        return GREEN_CANDLE;
    }

    @Override
    protected Block toCakeForm() {
        return new BlockCandleCakeGreen();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy