diff options
Diffstat (limited to 'include/components.hpp')
-rw-r--r-- | include/components.hpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/include/components.hpp b/include/components.hpp index dafb859..87d4293 100644 --- a/include/components.hpp +++ b/include/components.hpp @@ -623,6 +623,22 @@ struct Hit : public Component { } }; +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!"; + } +}; + /** * SYSTEMS */ |