aboutsummaryrefslogtreecommitdiffstats
path: root/include/components.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/components.hpp')
-rw-r--r--include/components.hpp11
1 files changed, 10 insertions, 1 deletions
diff --git a/include/components.hpp b/include/components.hpp
index 1195337..507aa33 100644
--- a/include/components.hpp
+++ b/include/components.hpp
@@ -62,6 +62,16 @@ struct Physics {
};
/**
+ * @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 {
+ //TODO possibly make a way to change this
+ bool grounded = false;
+};
+
+/**
* @struct Health
* @brief Gives and entity health and stuff.
*/
@@ -200,7 +210,6 @@ struct Animate {
};
//TODO
-
struct Input {
};