Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/Dialog_HS16/src/modules/notifications/dispatchers/DialogueManager.cc @ 11317

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

New DialogueManager Class

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.