From bef28375cbaaa3f527b98b8c617fbfd5ca3a525a Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Tue, 10 Jan 2017 08:42:54 -0500 Subject: particles are a lot better --- include/particle.hpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'include/particle.hpp') 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 { private: std::vector 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); -- cgit v1.2.3