All entity stuff in org.bukkit moved to org.bukkit.entity
By: Dinnerbone <dinnerbone@dinnerbone.com>
This commit is contained in:
17
paper-api/src/main/java/org/bukkit/entity/ItemDrop.java
Normal file
17
paper-api/src/main/java/org/bukkit/entity/ItemDrop.java
Normal file
@@ -0,0 +1,17 @@
|
||||
package org.bukkit.entity;
|
||||
|
||||
import org.bukkit.ItemStack;
|
||||
|
||||
/**
|
||||
* Represents a dropped item.
|
||||
*
|
||||
* @author sk89q
|
||||
*/
|
||||
public interface ItemDrop extends Entity {
|
||||
/**
|
||||
* Gets the item stack.
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
public ItemStack getItemStack();
|
||||
}
|
||||
Reference in New Issue
Block a user