Fork of Poseidon providing Bukkit #1060 to older Beta versions (b1.0-b1.7.3)
1package org.bukkit.entity;
2
3import org.bukkit.inventory.ItemStack;
4
5/**
6 * Represents an Item.
7 *
8 * @author Cogito
9 */
10public interface Item extends Entity {
11
12 /**
13 * Gets the item stack associated with this item drop.
14 *
15 * @return
16 */
17 public ItemStack getItemStack();
18
19 /**
20 * Sets the item stack associated with this item drop.
21 *
22 * @param stack
23 */
24 public void setItemStack(ItemStack stack);
25}