1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-20 03:35:51 +00:00

[ci skip] refactoring

This commit is contained in:
TheBusyBiscuit 2020-05-17 12:49:11 +02:00
parent 7242886585
commit de8fb5ccef
2 changed files with 12 additions and 2 deletions

View File

@ -1,4 +1,4 @@
package io.github.thebusybiscuit.slimefun4.api.items;
package io.github.thebusybiscuit.slimefun4.core.attributes;
import java.util.Collection;
@ -6,6 +6,16 @@ import org.bukkit.block.Block;
import org.bukkit.entity.Player;
import org.bukkit.inventory.ItemStack;
import me.mrCookieSlime.Slimefun.Objects.SlimefunItem.SlimefunItem;
/**
* DO NOT IMPLEMENT THIS INTERFACE.
* This is implemented by every {@link SlimefunItem} by default.
* Might be changed in the future.
*
* @author TheBusyBiscuit
*
*/
public interface Placeable {
Collection<ItemStack> getDrops();

View File

@ -23,8 +23,8 @@ import io.github.thebusybiscuit.slimefun4.api.exceptions.IncompatibleItemHandler
import io.github.thebusybiscuit.slimefun4.api.exceptions.MissingDependencyException;
import io.github.thebusybiscuit.slimefun4.api.exceptions.UnregisteredItemException;
import io.github.thebusybiscuit.slimefun4.api.items.ItemSetting;
import io.github.thebusybiscuit.slimefun4.api.items.Placeable;
import io.github.thebusybiscuit.slimefun4.core.attributes.EnergyNetComponent;
import io.github.thebusybiscuit.slimefun4.core.attributes.Placeable;
import io.github.thebusybiscuit.slimefun4.core.attributes.Radioactive;
import io.github.thebusybiscuit.slimefun4.core.attributes.WitherProof;
import io.github.thebusybiscuit.slimefun4.core.guide.SlimefunGuide;