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/grounded.hpp | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 include/components/grounded.hpp (limited to 'include/components/grounded.hpp') diff --git a/include/components/grounded.hpp b/include/components/grounded.hpp new file mode 100644 index 0000000..017c118 --- /dev/null +++ b/include/components/grounded.hpp @@ -0,0 +1,27 @@ +#ifndef COMPONENTS_GROUNDED_HPP_ +#define COMPONENTS_GROUNDED_HPP_ + +#include "base.hpp" + +/** + * @struct Grounded + * @brief Places an entity without physics on the ground. + * This is used so we don't have to update the physics of a non-moving object every loop. + */ +struct Grounded : public Component { + Grounded(bool g = false) + : grounded(g) {} + Grounded(XMLElement* imp, XMLElement* def) { + fromXML(imp, def); + } + + bool grounded; + + void fromXML(XMLElement* imp, XMLElement* def) final { + (void)imp; + (void)def; + grounded = false; + } +}; + +#endif // COMPONENTS_GROUNDED_HPP_ -- cgit v1.2.3