aboutsummaryrefslogtreecommitdiffstats
path: root/include/particle.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-04-29 18:28:28 -0400
committerClyne Sullivan <tullivan99@gmail.com>2017-04-29 18:28:28 -0400
commit40d164ea3d8437cd5a06a06d5b89bd938d3dd906 (patch)
treeec22853ca9a18706a3318ea9d16464d9a36a7419 /include/particle.hpp
parent18380eb2e6443c2736b4958b01e7ba2fe2cfa318 (diff)
no more getSystem
Diffstat (limited to 'include/particle.hpp')
-rw-r--r--include/particle.hpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/particle.hpp b/include/particle.hpp
index 822ac41..31825fc 100644
--- a/include/particle.hpp
+++ b/include/particle.hpp
@@ -29,21 +29,21 @@ struct Particle {
class ParticleSystem : public entityx::System<ParticleSystem> {
private:
- std::vector<Particle> parts;
- unsigned int maximum;
+ static std::vector<Particle> parts;
+ static unsigned int maximum;
public:
ParticleSystem(unsigned int max = 2048);
- void add(const vec2& pos, const ParticleType& type, const int& timeleft = 3000,
+ static void add(const vec2& pos, const ParticleType& type, const int& timeleft = 3000,
const unsigned char& color = 0);
- void addMultiple(const int& count, const ParticleType& type, std::function<vec2(void)> f,
+ static void addMultiple(const int& count, const ParticleType& type, std::function<vec2(void)> f,
const int& timeleft = 3000, const unsigned char& color = 0);
- void render(void);
+ static void render(void);
void update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) override;
- int getCount(void) const;
+ static int getCount(void);
};
#endif // PARTICLE_HPP_