refactor Items

This commit is contained in:
Tahg
2011-02-21 19:57:06 -05:00
parent 3626a877ce
commit d82679b8c7
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);
}