1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-21 20:25:54 +00:00
Slimefun4/src/me/mrCookieSlime/Slimefun/Objects/SlimefunItem/ExcludedSoulboundTool.java

19 lines
571 B
Java
Raw Normal View History

package me.mrCookieSlime.Slimefun.Objects.SlimefunItem;
import me.mrCookieSlime.Slimefun.Lists.RecipeType;
import me.mrCookieSlime.Slimefun.Objects.Category;
import org.bukkit.inventory.ItemStack;
public class ExcludedSoulboundTool extends SoulboundItem{
public ExcludedSoulboundTool(Category category, ItemStack item, String name, RecipeType type, ItemStack[] recipe) {
super(category, item, name, type, recipe);
}
public ExcludedSoulboundTool(Category category, ItemStack item, String name, ItemStack[] recipe) {
super(category, item, name, recipe);
}
}