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 | |
---|
11 | namespace 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.