Rev | Line | |
---|
[11247] | 1 | |
---|
| 2 | |
---|
| 3 | #include "Dialogue.h" |
---|
| 4 | #include "core/CoreIncludes.h" |
---|
| 5 | #include "core/EventIncludes.h" |
---|
| 6 | #include "core/XMLPort.h" |
---|
| 7 | |
---|
| 8 | namespace 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.