blob: c9a53f65bf4d2661e26c7e3475482b5db872033c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#ifndef COMPONENTS_TRIGGER_HPP_
#define COMPONENTS_TRIGGER_HPP_
#include "base.hpp"
#include <string>
struct Trigger : public Component {
Trigger(const std::string& t)
: text(t) {}
Trigger(XMLElement* imp, XMLElement* def) {
fromXML(imp, def);
}
std::string text;
void fromXML(XMLElement* imp, XMLElement* def) final {
(void)imp;
(void)def;
text = "You got me!";
}
};
#endif // COMPONENTS_TRIGGER_HPP_
|