Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/HUD_HS16/src/modules/overlays/hud/HUDPickupItem.h @ 11336

Last change on this file since 11336 was 11336, checked in by patricwi, 7 years ago

finished version of HUD and PickupSystem. crash bug remaining

File size: 878 bytes
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
20namespace 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.