diff options
Diffstat (limited to 'source')
-rw-r--r-- | source/ItemGrid.h | 8 | ||||
-rw-r--r-- | source/PluginManager.h | 4 |
2 files changed, 10 insertions, 2 deletions
diff --git a/source/ItemGrid.h b/source/ItemGrid.h index 82898537c..80ea17c8b 100644 --- a/source/ItemGrid.h +++ b/source/ItemGrid.h @@ -98,10 +98,14 @@ public: */
int ChangeSlotCount(int a_X, int a_Y, int a_AddToCount);
- /// Removes one item from the specified slot, and returns it. If the slot was empty, returns an empty item
+ /** Removes one item from the stack in the specified slot, and returns it.
+ If the slot was empty, returns an empty item
+ */
cItem RemoveOneItem(int a_SlotNum);
- /// Removes one item from the specified slot, and returns it. If the slot was empty, returns an empty item
+ /** Removes one item from the stack in the specified slot, and returns it.
+ If the slot was empty, returns an empty item
+ */
cItem RemoveOneItem(int a_X, int a_Y);
/// Returns the number of items of type a_Item that are stored
diff --git a/source/PluginManager.h b/source/PluginManager.h index d930a0c8b..4a035f088 100644 --- a/source/PluginManager.h +++ b/source/PluginManager.h @@ -3,6 +3,10 @@ #include "Item.h" + + + + class cPlugin; // fwd: World.h |