aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorAlec Thomas <alec@swapoff.org>2013-10-14 13:56:17 -0400
committerAlec Thomas <alec@swapoff.org>2013-10-14 13:56:17 -0400
commit1a2f8fbc64bd2fe47f7644f25fb769ec255c53bd (patch)
tree3609a7e9c55adfee0e3e824daff43d3ea89795ba /README.md
parent30a59e54de15e4a8a5e572f75227ef295560ff18 (diff)
README formatting tweaks.
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index 7be4eb7..b5addbb 100644
--- a/README.md
+++ b/README.md
@@ -58,11 +58,11 @@ entity.destroy();
#### Implementation details
-- Each entityx::Entity is a convenience class wrapping an entityx::Entity::Id.
-- An entityx::Entity handle can be invalidated with `invalidate()`. This does not affect the underlying entity.
-- When an entity is destroyed the manager adds its ID to a free list and invalidates the entityx::Entity handle.
+- Each `entityx::Entity` is a convenience class wrapping an `entityx::Entity::Id`.
+- An `entityx::Entity` handle can be invalidated with `invalidate()`. This does not affect the underlying entity.
+- When an entity is destroyed the manager adds its ID to a free list and invalidates the `entityx::Entity` handle.
- When an entity is created IDs are recycled from the free list before allocating new ones.
-- An entityx::Entity ID contains an index and a version. When an entity is destroyed, the version associated with the index is incremented, invalidating all previous entities referencing the previous ID.
+- An `entityx::Entity` ID contains an index and a version. When an entity is destroyed, the version associated with the index is incremented, invalidating all previous entities referencing the previous ID.
- EntityX uses a reference counting smart pointer`entityx::ptr<T>` to manage object lifetimes. As a general rule, passing a pointer to any EntityX method will convert to a smart pointer and take ownership. To maintain your own reference to the pointer you will need to wrap it in `entityx::ptr<T>`.
### Components (entity data)