diff options
author | Alec Thomas <alec@swapoff.org> | 2015-06-14 10:30:25 +1000 |
---|---|---|
committer | Alec Thomas <alec@swapoff.org> | 2015-06-14 10:30:25 +1000 |
commit | 1f6aeb65560d52a392af62f96f62e5f9dada8846 (patch) | |
tree | 7fac77f7e1518ec12270fbb725e84c842bf5dffd | |
parent | e5cf985e03c2741cfdeb0c504cc1b7b0a631d151 (diff) | |
parent | 2e5e01d6d5e9f7c74ed7449e843736e08077b092 (diff) |
Merge pull request #103 from Nodmgatall/patch-1
Make Receiver inheritance public instead of implicitly private
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -243,7 +243,7 @@ class CollisionSystem : public System<CollisionSystem> { Objects interested in receiving collision information can subscribe to ``Collision`` events by first subclassing the CRTP class ``Receiver<T>``: ```c++ -struct DebugSystem : public System<DebugSystem>, Receiver<DebugSystem> { +struct DebugSystem : public System<DebugSystem>, public Receiver<DebugSystem> { void configure(entityx::EventManager &event_manager) { event_manager.subscribe<Collision>(*this); } |