while some of these may of been true, they are extreme cases and cause a ton of noise to plugin developers. Use ApiStatus.Internal instead of Deprecated for actual internal API that continues to have use (internally). These do not help plugin developers if they bring moise noise than value.
29 lines
710 B
Java
29 lines
710 B
Java
package org.bukkit.block;
|
|
|
|
import org.bukkit.inventory.ItemStack;
|
|
import org.bukkit.loot.Lootable;
|
|
import org.jetbrains.annotations.Nullable;
|
|
|
|
/**
|
|
* Represents a captured state of suspicious sand or gravel.
|
|
*/
|
|
public interface BrushableBlock extends Lootable, TileState {
|
|
|
|
/**
|
|
* Get the item which will be revealed when the sand is fully brushed away
|
|
* and uncovered.
|
|
*
|
|
* @return the item
|
|
*/
|
|
@org.jetbrains.annotations.NotNull // Paper
|
|
public ItemStack getItem();
|
|
|
|
/**
|
|
* Sets the item which will be revealed when the sand is fully brushed away
|
|
* and uncovered.
|
|
*
|
|
* @param item the item
|
|
*/
|
|
public void setItem(@Nullable ItemStack item);
|
|
}
|