From 316df0931c66e43e69f21bda28c77b9bdb1e8bca Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Tue, 13 Jun 2017 21:01:08 -0400 Subject: component reorginization; entity flashes --- include/components/trigger.hpp | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 include/components/trigger.hpp (limited to 'include/components/trigger.hpp') diff --git a/include/components/trigger.hpp b/include/components/trigger.hpp new file mode 100644 index 0000000..c9a53f6 --- /dev/null +++ b/include/components/trigger.hpp @@ -0,0 +1,25 @@ +#ifndef COMPONENTS_TRIGGER_HPP_ +#define COMPONENTS_TRIGGER_HPP_ + +#include "base.hpp" + +#include + +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_ -- cgit v1.2.3