Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/Dialog_HS16/src/modules/overlays/hud/HUDDialogue.h @ 11317

Last change on this file since 11317 was 11317, checked in by dmoritz, 7 years ago

Picture added

File size: 620 bytes
Line 
1
2
3#ifndef _HUDDialogue_H__
4#define _HUDDialogue_H__
5
6#include "overlays/OverlaysPrereqs.h"
7
8#include <map>
9#include <string>
10
11#include "util/OgreForwardRefs.h"
12#include "overlays/OrxonoxOverlay.h"
13#include "tools/Timer.h"
14
15namespace orxonox
16{
17        class _OverlaysExport HUDDialogue : public OrxonoxOverlay
18    {
19        public:
20            HUDDialogue(Context* context);
21            virtual ~HUDDialogue();
22
23            virtual void updateTarget(std::string portrait);
24
25            virtual void invisible();
26
27      private:
28                        Ogre::PanelOverlayElement* overlayElementIcon_;
29
30                        Timer portraitTimer;
31    };
32}
33#endif
Note: See TracBrowser for help on using the repository browser.