Changeset 11708 for code/trunk/src/modules/overlays/hud/HUDPickupSystem.h
- Timestamp:
- Jan 6, 2018, 6:07:53 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/modules/overlays/hud/HUDPickupSystem.h
r11705 r11708 32 32 33 33 #include "overlays/OverlaysPrereqs.h" 34 #include "pickup/PickupPrereqs.h" 34 35 35 36 #include <vector> … … 48 49 49 50 virtual void tick(float dt) override; 51 50 52 virtual void sizeChanged() override; 53 virtual void changedOwner() override; 51 54 52 55 private: 53 std::string getIcon(std::string repName); 56 std::vector<const PickupInventoryContainer*> getPickupsForOwner() const; 57 std::string getIcon(const std::string& repName) const; 54 58 55 59 std::vector<Ogre::OverlayElement*> items_; 60 WeakPtr<Pawn> owner_; 56 61 }; 57 62 }
Note: See TracChangeset
for help on using the changeset viewer.