From ba651a82d585c181e9632fadba5bb4d683842d44 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Tue, 14 Mar 2017 18:19:06 -0400 Subject: better slash, scale fixes --- include/components/base.hpp | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 include/components/base.hpp (limited to 'include/components/base.hpp') diff --git a/include/components/base.hpp b/include/components/base.hpp new file mode 100644 index 0000000..9139a75 --- /dev/null +++ b/include/components/base.hpp @@ -0,0 +1,29 @@ +#ifndef COMPONENTS_BASE_HPP_ +#define COMPONENTS_BASE_HPP_ + +#include +#include + +using namespace tinyxml2; + +/** + * @class Component + * @brief A base class for all components, insures all components have similar + * base functionalities. + */ +class Component : public entityx::Component { +public: + /** + * Constructs the component from the two given XML tags. + * + * Components can get information from two places: where the entity is defined + * (it's implementation, e.g. in town.xml) or from the tag's definition (e.g. entities.xml). + * The definition tag should be used for default values. + * + * @param imp tag for the implementation of the entity + * @param def tag for the definition of the component + */ + virtual void fromXML(XMLElement* imp, XMLElement* def) = 0; +}; + +#endif // COMPONENTS_BASE_APP_ -- cgit v1.2.3