diff options
Diffstat (limited to 'src/render.hpp')
-rw-r--r-- | src/render.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/render.hpp b/src/render.hpp index 26e525b..f3064d1 100644 --- a/src/render.hpp +++ b/src/render.hpp @@ -38,6 +38,8 @@ #include "world.hpp" #include "events/world.hpp" +#include "components/Player.hpp" + class RenderSystem : public entityx::System<RenderSystem>, public entityx::Receiver<RenderSystem> { @@ -56,6 +58,7 @@ private: unsigned int worldVertex = 0; GLuint worldTexture = 0; GLuint worldNormal = 0; + entityx::Entity player; // Save the player so we can track the camera public: RenderSystem() : window(nullptr, SDL_DestroyWindow) {} @@ -89,6 +92,7 @@ public: * EVENTS * ************/ void receive(const WorldMeshUpdateEvent &wmu); + void receive(const entityx::ComponentAddedEvent<Player> &cae); }; |