diff options
author | Brad Anderson <eco@gnuk.net> | 2014-12-14 02:25:08 -0700 |
---|---|---|
committer | Brad Anderson <eco@gnuk.net> | 2014-12-14 02:25:08 -0700 |
commit | cf472895b2f3a81812f84c0d2073e4b750652a74 (patch) | |
tree | 0d4e724de293b48e9dea9826ff166a266b70c2a3 /README.md | |
parent | 8a5dc45b955199bc9b0f38ab0f7bad0a8810e196 (diff) |
Don't use dereference operator in events example
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -227,7 +227,7 @@ class CollisionSystem : public System<CollisionSystem> { for (Entity left_entity : es.entities_with_components(left_position)) { for (Entity right_entity : es.entities_with_components(right_position)) { if (collide(left_position, right_position)) { - events->emit<Collision>(left_entity, right_entity); + events.emit<Collision>(left_entity, right_entity); } } } |