diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-01-06 19:09:11 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-01-06 19:09:11 -0500 |
commit | c62c4eef57b78a8d5bf18cb3b2e8acfbc6cc30b6 (patch) | |
tree | 1301cb107eaf2ba29966df2476c84f2f71583973 /include | |
parent | 81ffc208ba15e77c1771f798907ee7e2a6331b3d (diff) |
particle delete fix
Diffstat (limited to 'include')
-rw-r--r-- | include/particle.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/particle.hpp b/include/particle.hpp index 4d42b39..a022583 100644 --- a/include/particle.hpp +++ b/include/particle.hpp @@ -34,7 +34,7 @@ public: void add(const vec2& pos, const ParticleType& type, const int& timeleft = 3000); void addMultiple(const int& count, const ParticleType& type, std::function<vec2(void)> f, const int& timeleft = 3000); - void render(void) const; + void render(void); void update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) override; int getCount(void) const; |