aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorAlec Thomas <alec@swapoff.org>2013-03-30 10:04:14 -0400
committerAlec Thomas <alec@swapoff.org>2013-03-30 10:04:14 -0400
commitc3b260b04a2bdf4743595881fd506f73d1efc9f6 (patch)
treec86cf28c515a7196a79d3e681dfb2ca0f81c0543 /README.md
parente8a0388c324f23756ba4a7f308a876738ccc02b4 (diff)
Fix README.
Fixes #7.
Diffstat (limited to 'README.md')
-rw-r--r--README.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/README.md b/README.md
index 37786d3..36f93fa 100644
--- a/README.md
+++ b/README.md
@@ -21,7 +21,8 @@ Entities are simply 64-bit numeric identifiers with which components are associa
Creating an entity is as simple as:
```c++
-EntityManager entities;
+EventManager events;
+EntityManager entities(events);
Entity entity = entities.create();
```