aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorAlec Thomas <alec@swapoff.org>2015-02-09 11:57:23 +1100
committerAlec Thomas <alec@swapoff.org>2015-02-09 11:57:23 +1100
commit306878eed7aef509088423cdd4b859e425b34e38 (patch)
tree5e2c05063bee6d3f39a74e90c8e5fdbebd9b6fc0 /README.md
parent312fe6d0cd0e7e34552a72cc8b628f046986de5c (diff)
Update README+example for inheritance-free change.
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index bfbdfc1..ac9c14c 100644
--- a/README.md
+++ b/README.md
@@ -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;