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

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

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

import cn.nukkit.api.PowerNukkitOnly;
import cn.nukkit.api.Since;

/**
 * @author joserobjr
 * @since 2021-06-15
 */
@PowerNukkitOnly
@Since("FUTURE")
public class BlockStairsCopperCutWeatheredWaxed extends BlockStairsCopperCutWeathered {
    @PowerNukkitOnly
    @Since("FUTURE")
    public BlockStairsCopperCutWeatheredWaxed() {
        this(0);
    }

    @PowerNukkitOnly
    @Since("FUTURE")
    public BlockStairsCopperCutWeatheredWaxed(int meta) {
        super(meta);
    }

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

    @Since("FUTURE")
    @PowerNukkitOnly
    @Override
    public boolean isWaxed() {
        return true;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy