aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/ParticleSystem.hpp
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.hpp
parent163c9e3eea437daa8ef6007fbdf2f91470066cbf (diff)
Renamed files and Emitter is a component
Diffstat (limited to 'src/crepe/ParticleSystem.hpp')
-rw-r--r--src/crepe/ParticleSystem.hpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/crepe/ParticleSystem.hpp b/src/crepe/ParticleSystem.hpp
deleted file mode 100644
index f670415..0000000
--- a/src/crepe/ParticleSystem.hpp
+++ /dev/null
@@ -1,14 +0,0 @@
-#pragma once
-
-#include <vector>
-#include "ParticleEmitter.hpp"
-
-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
-};