aboutsummaryrefslogtreecommitdiffstats
path: root/include/particle.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/particle.hpp')
-rw-r--r--include/particle.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/particle.hpp b/include/particle.hpp
index a022583..63f23e3 100644
--- a/include/particle.hpp
+++ b/include/particle.hpp
@@ -19,8 +19,10 @@ struct Particle {
ParticleType type;
int timeLeft;
+ //const Texture& color; // TODO
+
Particle(vec2 p, ParticleType t = ParticleType::Drop, int tl = 3000)
- : location(p), type(t), timeLeft(tl) {} // TODO times
+ : location(p), type(t), timeLeft(tl) {}
} __attribute__ ((packed));
class ParticleSystem : public entityx::System<ParticleSystem> {