aboutsummaryrefslogtreecommitdiffstats
path: root/include/components/portal.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-06-13 21:01:08 -0400
committerClyne Sullivan <tullivan99@gmail.com>2017-06-13 21:01:08 -0400
commit316df0931c66e43e69f21bda28c77b9bdb1e8bca (patch)
treed98231e4b41d046a2a60ee9c6f1cc724a9e3837d /include/components/portal.hpp
parent11b8e727e04ed6095164bb826541409f88047625 (diff)
component reorginization; entity flashes
Diffstat (limited to 'include/components/portal.hpp')
-rw-r--r--include/components/portal.hpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/include/components/portal.hpp b/include/components/portal.hpp
new file mode 100644
index 0000000..ca153e1
--- /dev/null
+++ b/include/components/portal.hpp
@@ -0,0 +1,23 @@
+#ifndef COMPONENTS_PORTAL_HPP_
+#define COMPONENTS_PORTAL_HPP_
+
+#include "base.hpp"
+
+#include <string>
+
+struct Portal : public Component {
+ Portal(std::string tf = "")
+ : toFile(tf) {}
+ Portal(XMLElement* imp, XMLElement* def) {
+ fromXML(imp, def);
+ }
+
+ std::string toFile;
+
+ void fromXML(XMLElement* imp, XMLElement* def) final {
+ (void)def;
+ toFile = imp->StrAttribute("inside");
+ }
+};
+
+#endif // COMPONENTS_PORTAL_HPP_