aboutsummaryrefslogtreecommitdiff
path: root/engines/mutationofjb/inventory.h
diff options
context:
space:
mode:
authorMiroslav Remák2018-07-08 19:21:58 +0200
committerEugene Sandulenko2018-08-25 23:12:01 +0200
commitd2e354b51f637dc2e9b251256b5a017cb41cfe59 (patch)
tree7c0de5e8d35cab5bbab1c821ade92a870f0cb0e4 /engines/mutationofjb/inventory.h
parent20d6d71ec97c1f7bc4b95ed6c98375b47dff6646 (diff)
downloadscummvm-rg350-d2e354b51f637dc2e9b251256b5a017cb41cfe59.tar.gz
scummvm-rg350-d2e354b51f637dc2e9b251256b5a017cb41cfe59.tar.bz2
scummvm-rg350-d2e354b51f637dc2e9b251256b5a017cb41cfe59.zip
MUTATIONOFJB: Implement scroll buttons.
Diffstat (limited to 'engines/mutationofjb/inventory.h')
-rw-r--r--engines/mutationofjb/inventory.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/engines/mutationofjb/inventory.h b/engines/mutationofjb/inventory.h
index c22422def2..79a0d7583d 100644
--- a/engines/mutationofjb/inventory.h
+++ b/engines/mutationofjb/inventory.h
@@ -52,12 +52,14 @@ public:
void removeAllItems();
void renameItem(const Common::String &oldName, const Common::String &newName);
- void rotateItemsRight(uint n);
- void rotateItemsLeft(uint n);
+ void scrollLeft();
+ void scrollRight();
void setObserver(InventoryObserver *observer);
private:
+ void rotateItemsRight(uint n);
+ void rotateItemsLeft(uint n);
void reverseItems(uint from, uint to);
Items _items;