aboutsummaryrefslogtreecommitdiffstats
path: root/entityx/Entity.cc
diff options
context:
space:
mode:
Diffstat (limited to 'entityx/Entity.cc')
-rw-r--r--entityx/Entity.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/entityx/Entity.cc b/entityx/Entity.cc
index adac3de..476def7 100644
--- a/entityx/Entity.cc
+++ b/entityx/Entity.cc
@@ -27,6 +27,11 @@ void Entity::destroy() {
invalidate();
}
+void Entity::kill(void) {
+ assign<Killed>();
+}
+
+
std::bitset<entityx::MAX_COMPONENTS> Entity::component_mask() const {
return manager_->component_mask(id_);
}