aboutsummaryrefslogtreecommitdiffstats
path: root/include/components/portal.hpp
blob: ca153e10e3033721c3e1d63c9b0a6e5abf1eab29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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_