aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlec Thomas <alec@swapoff.org>2015-06-14 10:30:38 +1000
committerAlec Thomas <alec@swapoff.org>2015-06-14 10:30:38 +1000
commit9fd3843c3a4c6d21670189071d20fe29ca04fba6 (patch)
treeb6d5cdad35e75cdc023c806586343eb687df2178
parent1f6aeb65560d52a392af62f96f62e5f9dada8846 (diff)
parent276999de398aa91959bd5903d84c3cbc43b4ece7 (diff)
Merge pull request #102 from svenstaro/patch-1
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 11a01fb..adb9750 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: