diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-01-10 08:42:54 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-01-10 08:42:54 -0500 |
commit | bef28375cbaaa3f527b98b8c617fbfd5ca3a525a (patch) | |
tree | b1dbd24b17fd6d9bb26f4b915ec33d934e398947 /include/particle.hpp | |
parent | 0aae714d4d894a4bfa9582c71ee8a1778260a047 (diff) |
particles are a lot better
Diffstat (limited to 'include/particle.hpp')
-rw-r--r-- | include/particle.hpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/particle.hpp b/include/particle.hpp index 3fcd409..92ab7e4 100644 --- a/include/particle.hpp +++ b/include/particle.hpp @@ -11,7 +11,8 @@ enum class ParticleType : char { Drop, Confetti, - SmallBlast + SmallBlast, + SmallPoof }; struct Particle { @@ -28,10 +29,10 @@ struct Particle { class ParticleSystem : public entityx::System<ParticleSystem> { private: std::vector<Particle> parts; - bool max; + unsigned int maximum; public: - ParticleSystem(int count = 2048, bool m = false); + ParticleSystem(unsigned int max = 2048); void add(const vec2& pos, const ParticleType& type, const int& timeleft = 3000, const unsigned char& color = 0); |