aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorAlec Thomas <alec@swapoff.org>2015-07-18 21:22:10 -0400
committerAlec Thomas <alec@swapoff.org>2015-07-18 21:22:43 -0400
commita7535d87a738157cfdfd30177828ae87c26ccaaa (patch)
tree7a25ad423f788192ed0beca864c8b0d4b9314f92 /README.md
parentc4d518bbdd136dde3826ff2e0e51ae84d7613720 (diff)
Remove ambiguity that old compilers can't resolve.
Diffstat (limited to 'README.md')
-rw-r--r--README.md7
1 files changed, 3 insertions, 4 deletions
diff --git a/README.md b/README.md
index b450c18..90057da 100644
--- a/README.md
+++ b/README.md
@@ -147,9 +147,8 @@ To query all entities with a set of components assigned you can use two
methods. Both methods will return only those entities that have *all* of the
specified components associated with them.
-`entityx::EntityManager::each(f) provides functional-style iteration over
-`entity components. The callback for `each()` can optionally accept an Entity as
-`its first argument.
+`entityx::EntityManager::each(f)` provides functional-style iteration over
+entity components:
```c++
entities.each<Position, Direction>([](Entity entity, Position &position, Direction &direction) {
@@ -205,7 +204,7 @@ A basic movement system might be implemented with something like the following:
```c++
struct MovementSystem : public System<MovementSystem> {
void update(entityx::EntityManager &es, entityx::EventManager &events, TimeDelta dt) override {
- es.each<Position, Direction>([dt](Position &position, Direction &direction) {
+ es.each<Position, Direction>([dt](Entity entity, Position &position, Direction &direction) {
position.x += direction.x * dt;
position.y += direction.y * dt;
});