diff options
author | Yohann Ferreira <bertram@cegetel.net> | 2006-11-05 01:47:44 +0000 |
---|---|---|
committer | Yohann Ferreira <bertram@cegetel.net> | 2006-11-05 01:47:44 +0000 |
commit | 9e70df3a6ac53f9900f7e4cbf6dbe40e53e0ddc1 (patch) | |
tree | ba0bf36049b125030e0bb2e26e7f755fe8f98723 /src/gui/shop.h | |
parent | 6a1702f014db23b5330e9b93e773b652d03c2ed1 (diff) | |
download | mana-9e70df3a6ac53f9900f7e4cbf6dbe40e53e0ddc1.tar.gz mana-9e70df3a6ac53f9900f7e4cbf6dbe40e53e0ddc1.tar.bz2 mana-9e70df3a6ac53f9900f7e4cbf6dbe40e53e0ddc1.tar.xz mana-9e70df3a6ac53f9900f7e4cbf6dbe40e53e0ddc1.zip |
Added item's pictures in sell dialogs, and precisions about the total money in it.
Diffstat (limited to 'src/gui/shop.h')
-rw-r--r-- | src/gui/shop.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/gui/shop.h b/src/gui/shop.h index 0736003b..006c0146 100644 --- a/src/gui/shop.h +++ b/src/gui/shop.h @@ -73,11 +73,16 @@ class ShopItems : public gcn::ListModel ITEM_SHOP at(int i); /** - * Clear the vector and delete the pictures' instances. + * Clear the vector. */ void clear(); -// private: // This is to be readded as soon as the sell dialog is redone. + /** + * Direct access to the vector + */ + std::vector<ITEM_SHOP> getShop(); + + private: std::vector<ITEM_SHOP> mItemsShop; }; |