diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2019-02-25 18:47:55 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2019-02-25 18:47:55 -0500 |
commit | d7bae41fab5570bdac547a46463974adb4723f96 (patch) | |
tree | 37b0567300f2e3d0a74ceae5861272f4ff970558 /include/systems/light.hpp | |
parent | 58774909a78f06b8de3cb60e2f010e8ceccbf3a6 (diff) |
mem leak patches; world ground from image
Diffstat (limited to 'include/systems/light.hpp')
-rw-r--r-- | include/systems/light.hpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/systems/light.hpp b/include/systems/light.hpp index ba91113..02c7eed 100644 --- a/include/systems/light.hpp +++ b/include/systems/light.hpp @@ -21,6 +21,11 @@ class LightSystem : public entityx::System<LightSystem> { private: static std::vector<Light> lights; + static GLfloat *colorData; + static GLfloat *coordData; + + static void resizeLights(void); + public: void update(entityx::EntityManager& en, entityx::EventManager& ev, entityx::TimeDelta dt) override; |