aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorBrad Anderson <eco@gnuk.net>2014-12-14 02:25:08 -0700
committerBrad Anderson <eco@gnuk.net>2014-12-14 02:25:08 -0700
commitcf472895b2f3a81812f84c0d2073e4b750652a74 (patch)
tree0d4e724de293b48e9dea9826ff166a266b70c2a3 /README.md
parent8a5dc45b955199bc9b0f38ab0f7bad0a8810e196 (diff)
Don't use dereference operator in events example
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 3a7ffd0..174a673 100644
--- a/README.md
+++ b/README.md
@@ -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);
}
}
}