refactor Items

By: Tahg <tahgtahv@gmail.com>
This commit is contained in:
Bukkit/Spigot
2011-02-21 19:57:06 -05:00
parent dc15009d48
commit 3cc14ab40f
5 changed files with 12 additions and 33 deletions

View File

@@ -1,25 +0,0 @@
package org.bukkit.entity;
import org.bukkit.inventory.ItemStack;
/**
* Represents a dropped item.
*
* @author sk89q
*/
public interface ItemDrop extends Entity {
/**
* Gets the item stack contained in this ItemDrop
*
* @return ItemStack of the contents of this drop
*/
public ItemStack getItemStack();
/**
* sets the item stack contained in this ItemDrop
*
* @param items New contents of this drop
*/
public void setItemStack(ItemStack items);
}