diff options
author | Alec Thomas <alec@swapoff.org> | 2015-06-14 10:30:38 +1000 |
---|---|---|
committer | Alec Thomas <alec@swapoff.org> | 2015-06-14 10:30:38 +1000 |
commit | 9fd3843c3a4c6d21670189071d20fe29ca04fba6 (patch) | |
tree | b6d5cdad35e75cdc023c806586343eb687df2178 | |
parent | 1f6aeb65560d52a392af62f96f62e5f9dada8846 (diff) | |
parent | 276999de398aa91959bd5903d84c3cbc43b4ece7 (diff) |
Merge pull request #102 from svenstaro/patch-1
Fix code example in README.md
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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: |