diff options
author | Alec Thomas <alec@swapoff.org> | 2015-02-09 11:57:23 +1100 |
---|---|---|
committer | Alec Thomas <alec@swapoff.org> | 2015-02-09 11:57:23 +1100 |
commit | 306878eed7aef509088423cdd4b859e425b34e38 (patch) | |
tree | 5e2c05063bee6d3f39a74e90c8e5fdbebd9b6fc0 /README.md | |
parent | 312fe6d0cd0e7e34552a72cc8b628f046986de5c (diff) |
Update README+example for inheritance-free change.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -116,13 +116,13 @@ To that end Components are typically [POD types](http://en.wikipedia.org/wiki/Pl As an example, position and direction information might be represented as: ```c++ -struct Position : entityx::Component<Position> { +struct Position { Position(float x = 0.0f, float y = 0.0f) : x(x), y(y) {} float x, y; }; -struct Direction : entityx::Component<Direction> { +struct Direction { Direction(float x = 0.0f, float y = 0.0f) : x(x), y(y) {} float x, y; @@ -208,7 +208,7 @@ As an example, we might want to implement a very basic collision system using ou First, we define the event type, which for our example is simply the two entities that collided: ```c++ -struct Collision : public Event<Collision> { +struct Collision { Collision(entityx::Entity left, entityx::Entity right) : left(left), right(right) {} entityx::Entity left, right; |