Line | |
---|
1 | |
---|
2 | #ifndef _HUDPickupItem_H__ |
---|
3 | #define _HUDPickupItem_H__ |
---|
4 | |
---|
5 | #include "overlays/OverlaysPrereqs.h" |
---|
6 | |
---|
7 | #include <map> |
---|
8 | #include <vector> |
---|
9 | #include <string> |
---|
10 | |
---|
11 | #include <OgreOverlayManager.h> |
---|
12 | #include <OgrePanelOverlayElement.h> |
---|
13 | |
---|
14 | #include "overlays/OrxonoxOverlay.h" |
---|
15 | #include "tools/interfaces/Tickable.h" |
---|
16 | #include "worldentities/pawns/Pawn.h" |
---|
17 | #include "overlays/OverlayGroup.h" |
---|
18 | #include "pickup/Pickup.h" |
---|
19 | |
---|
20 | namespace orxonox |
---|
21 | { |
---|
22 | class _OverlaysExport HUDPickupItem : public OrxonoxOverlay, public Tickable |
---|
23 | { |
---|
24 | public: |
---|
25 | HUDPickupItem(Context* context); |
---|
26 | Ogre::PanelOverlayElement* overlayElement_; |
---|
27 | virtual ~HUDPickupItem(); |
---|
28 | |
---|
29 | void initializeMaterial(const std::string& s, float x, float y); |
---|
30 | void hideMe(Pickupable* p, bool repaint); |
---|
31 | |
---|
32 | private: |
---|
33 | WeakPtr<Pawn> owner_; |
---|
34 | WeakPtr<Pickup> pickup_; |
---|
35 | |
---|
36 | }; |
---|
37 | } |
---|
38 | |
---|
39 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.