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

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

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

/**
 * @author MagicDroidX (Nukkit Project)
 */
public class ItemFish extends ItemEdible {

    public ItemFish() {
        this(0, 1);
    }

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

    public ItemFish(Integer meta, int count) {
        super(RAW_FISH, meta, count, "Cod");
    }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy