16 lines
244 B
Java
16 lines
244 B
Java
package org.bukkit;
|
|
|
|
/**
|
|
* Represents a dropped item.
|
|
*
|
|
* @author sk89q
|
|
*/
|
|
public interface ItemDrop extends Entity {
|
|
/**
|
|
* Gets the item stack.
|
|
*
|
|
* @return
|
|
*/
|
|
public ItemStack getItemStack();
|
|
}
|