]> code.bitgloo.com Git - clyne/entityx.git/commitdiff
Fix README.
authorAlec Thomas <alec@swapoff.org>
Sat, 30 Mar 2013 14:04:14 +0000 (10:04 -0400)
committerAlec Thomas <alec@swapoff.org>
Sat, 30 Mar 2013 14:04:14 +0000 (10:04 -0400)
Fixes #7.

README.md

index 37786d3781f532295bced80a6b0d8e9a22f5135f..36f93fa799d898a48aba89bff11d253db0f3d5f1 100644 (file)
--- 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();
 ```