diff options
author | Alec Thomas <alec@swapoff.org> | 2013-10-14 13:53:41 -0400 |
---|---|---|
committer | Alec Thomas <alec@swapoff.org> | 2013-10-14 13:53:41 -0400 |
commit | 30a59e54de15e4a8a5e572f75227ef295560ff18 (patch) | |
tree | 5b2bc15b1261a8c37f97fb344cef9a91f22c51c0 | |
parent | a0a4753cc51be1976f4b64be2dab4d13490facb2 (diff) |
Fix bug in EntityManager::get.
-rw-r--r-- | README.md | 4 | ||||
-rw-r--r-- | entityx/Entity.h | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -1,8 +1,8 @@ -# EntityX - A fast, type-safe C++ entityx::Entity-entityx::Component system +# EntityX - A fast, type-safe C++ Entity Component System [](https://travis-ci.org/alecthomas/entityx) -entityx::Entity-entityx::Component (EC) systems are a form of decomposition that completely decouples entity logic and data from the entity "objects" themselves. The [Evolve your Hierarchy](http://cowboyprogramming.com/2007/01/05/evolve-your-heirachy/) article provides a solid overview of EC systems and why you should use them. +Entity Component Systems (ECS) are a form of decomposition that completely decouples entity logic and data from the entity "objects" themselves. The [Evolve your Hierarchy](http://cowboyprogramming.com/2007/01/05/evolve-your-heirachy/) article provides a solid overview of EC systems and why you should use them. EntityX is an EC system that uses C++11 features to provide type-safe component management, event delivery, etc. It was built during the creation of a 2D space shooter. diff --git a/entityx/Entity.h b/entityx/Entity.h index cfcf12c..17e3be0 100644 --- a/entityx/Entity.h +++ b/entityx/Entity.h @@ -432,7 +432,7 @@ class EntityManager : boost::noncopyable, public enable_shared_from_this<EntityM } Entity get(Entity::Id id) { - assert(entity_version_[id.index()] != id.version() && "Attempt to get() with stale Entity::Id"); + assert(entity_version_[id.index()] == id.version() && "Attempt to get() with stale Entity::Id"); return Entity(shared_from_this(), id); } |