diff options
Diffstat (limited to 'include/components/portal.hpp')
-rw-r--r-- | include/components/portal.hpp | 23 |
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_ |