Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 11292 was 11292, checked in by dmoritz, 8 years ago

New DialogueManager Class

File size: 661 bytes
Line 
1
2
3
4
5
6#ifndef _HUDDialogue_H__
7#define _HUDDialogue_H__
8
9#include "overlays/OverlaysPrereqs.h"
10
11#include <map>
12#include <string>
13
14#include "util/OgreForwardRefs.h"
15#include "tools/interfaces/Tickable.h"
16#include "overlays/OrxonoxOverlay.h"
17
18namespace orxonox
19{
20        class _OverlaysExport HUDDialogue : public OrxonoxOverlay, public Tickable
21    {
22        public:
23            HUDDialogue(Context* context);
24            virtual ~HUDDialogue();
25
26            virtual void tick(float dt) override;
27
28            virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode) override;
29
30
31
32      private:
33                        Ogre::PanelOverlayElement* overlayElementIcon_;
34    };
35}
36
37#endif
Note: See TracBrowser for help on using the repository browser.