Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/Dialog_HS16/src/modules/notifications/dispatchers/Dialogue.cc @ 11247

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

New Dialogue Class

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