aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven-Hendrik Haase <sh@lutzhaase.com>2015-06-13 02:37:25 +0200
committerSven-Hendrik Haase <sh@lutzhaase.com>2015-06-13 02:37:25 +0200
commit276999de398aa91959bd5903d84c3cbc43b4ece7 (patch)
treef6b00847ff01e1f6d1bc7d985eb7add60b24a596
parente5cf985e03c2741cfdeb0c504cc1b7b0a631d151 (diff)
Fix code example in README.md
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 2439e04..dcca4ea 100644
--- a/README.md
+++ b/README.md
@@ -88,9 +88,9 @@ Creating an entity is as simple as:
```c++
#include <entityx/entityx.h>
-EntityX entityx;
+entityx::EntityX ex;
-entityx::Entity entity = entityx.entities.create();
+entityx::Entity entity = ex.entities.create();
```
And destroying an entity is done with: