1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-21 04:05:48 +00:00
Slimefun4/src/me/mrCookieSlime/Slimefun/Objects/SlimefunItem/ExcludedBlock.java

18 lines
530 B
Java
Raw Normal View History

2016-04-14 16:24:03 +00:00
package me.mrCookieSlime.Slimefun.Objects.SlimefunItem;
2016-12-30 09:48:27 +00:00
import org.bukkit.inventory.ItemStack;
2016-04-14 16:24:03 +00:00
import me.mrCookieSlime.Slimefun.Lists.RecipeType;
import me.mrCookieSlime.Slimefun.Objects.Category;
2016-12-30 09:48:27 +00:00
import me.mrCookieSlime.Slimefun.Objects.SlimefunItem.Interfaces.NotPlaceable;
2016-04-14 16:24:03 +00:00
2016-12-30 09:48:27 +00:00
public class ExcludedBlock extends SlimefunItem implements NotPlaceable {
2016-04-14 16:24:03 +00:00
public ExcludedBlock(Category category, ItemStack item, String name, RecipeType recipeType, ItemStack[] recipe) {
super(category, item, name, recipeType, recipe);
}
}