aboutsummaryrefslogtreecommitdiffstats
path: root/include/components/grounded.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/components/grounded.hpp')
-rw-r--r--include/components/grounded.hpp27
1 files changed, 27 insertions, 0 deletions
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_