Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/Presentation_HS16/src/modules/notifications/dispatchers/DialogueManager.cc @ 11347

Last change on this file since 11347 was 11347, checked in by maxima, 7 years ago

dialog branch merged to presentation

File size: 502 bytes
Line 
1
2
3#include "DialogueManager.h"
4#include "core/CoreIncludes.h"
5#include "core/EventIncludes.h"
6#include "core/XMLPort.h"
7
8
9
10
11namespace orxonox{
12
13
14        RegisterClass(DialogueManager);
15
16        DialogueManager::DialogueManager(Context* context):NotificationDispatcher(context)
17        {
18                RegisterObject(DialogueManager);
19
20        }
21        DialogueManager::~DialogueManager()
22    {
23
24    }
25    void DialogueManager::XMLPort(Element& xmlelement, XMLPort::Mode mode)
26    {
27        SUPER(DialogueManager, XMLPort, xmlelement, mode);
28    }
29}
Note: See TracBrowser for help on using the repository browser.