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

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

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

import cn.nukkit.api.Since;

/**
 * @author good777LUCKY
 */
@Since("1.4.0.0-PN")
public class ItemNuggetIron extends Item {

    @Since("1.4.0.0-PN")
    public ItemNuggetIron() {
        this(0, 1);
    }

    @Since("1.4.0.0-PN")
    public ItemNuggetIron(Integer meta) {
        this(meta, 1);
    }

    @Since("1.4.0.0-PN")
    public ItemNuggetIron(Integer meta, int count) {
        super(IRON_NUGGET, meta, count, "Iron Nugget");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy