diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-02-13 16:57:19 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-02-13 16:57:19 -0500 |
commit | 183331ccf1aa3f4142697e9e37528f084fae7466 (patch) | |
tree | c3c2f2a26b4b85df9ec809f40443dce0d115b0b8 /entityx/Entity.cc | |
parent | 3eccd38e989012ff35ee5376670aabc338c52008 (diff) |
rip skirl
Diffstat (limited to 'entityx/Entity.cc')
-rw-r--r-- | entityx/Entity.cc | 5 |
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_); } |