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

cn.nukkit.item.ItemChestBoatBirch Maven / Gradle / Ivy

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

public class ItemChestBoatBirch extends ItemChestBoatBase {
    public ItemChestBoatBirch() {
        this(0, 1);
    }

    public ItemChestBoatBirch(Integer meta) {
        this(meta, 1);
    }

    public ItemChestBoatBirch(Integer meta, int count) {
        this(BIRCH_CHEST_BOAT, meta, count, "Birch Chest Boat");
    }

    protected ItemChestBoatBirch(int id, Integer meta, int count, String name) {
        super(id, meta, count, name);
    }

    @Override
    public int getBoatId() {
        return 2;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy