aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/ParticleSystem.h
diff options
context:
space:
mode:
authorjaroWMR <jarorutjes07@gmail.com>2024-10-10 08:38:40 +0200
committerjaroWMR <jarorutjes07@gmail.com>2024-10-10 08:38:40 +0200
commitd001c4ba95a72f13c942f1a24eb98fe1584d93a4 (patch)
tree8d72f1ddf9baf591fdf99397aa1495a219d35d35 /src/crepe/ParticleSystem.h
parent163c9e3eea437daa8ef6007fbdf2f91470066cbf (diff)
Renamed files and Emitter is a component
Diffstat (limited to 'src/crepe/ParticleSystem.h')
-rw-r--r--src/crepe/ParticleSystem.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/crepe/ParticleSystem.h b/src/crepe/ParticleSystem.h
new file mode 100644
index 0000000..fd6d110
--- /dev/null
+++ b/src/crepe/ParticleSystem.h
@@ -0,0 +1,19 @@
+#pragma once
+
+#include <vector>
+#include "ParticleEmitter.h"
+
+
+namespace crepe {
+
+class ParticleSystem {
+public:
+ ParticleSystem();
+ void update(float deltaTime, std::vector<ParticleEmitter>& emitters);
+private:
+ void emitParticle(ParticleEmitter &emitter); //emits a new particle
+
+ float m_elapsedTime; //elapsed time since the last emission
+};
+
+}