diff options
author | Alec Thomas <alec@swapoff.org> | 2013-03-30 10:04:14 -0400 |
---|---|---|
committer | Alec Thomas <alec@swapoff.org> | 2013-03-30 10:04:14 -0400 |
commit | c3b260b04a2bdf4743595881fd506f73d1efc9f6 (patch) | |
tree | c86cf28c515a7196a79d3e681dfb2ca0f81c0543 /README.md | |
parent | e8a0388c324f23756ba4a7f308a876738ccc02b4 (diff) |
Fix README.
Fixes #7.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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(); ``` |