aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/system/ParticleSystem.h
diff options
context:
space:
mode:
authorheavydemon21 <nielsstunnebrink1@gmail.com>2024-11-14 10:23:04 +0100
committerheavydemon21 <nielsstunnebrink1@gmail.com>2024-11-14 10:23:04 +0100
commit5e6b80ba9fe18143b994a301ab0ba1ba54072b43 (patch)
tree2784b5bdb49dba729884af5d4fd80dd9e44776d1 /src/crepe/system/ParticleSystem.h
parent767f40a61952892d60d204ecaaffa07e7e396d28 (diff)
Working color, fucked up git merge
Diffstat (limited to 'src/crepe/system/ParticleSystem.h')
-rw-r--r--src/crepe/system/ParticleSystem.h15
1 files changed, 6 insertions, 9 deletions
diff --git a/src/crepe/system/ParticleSystem.h b/src/crepe/system/ParticleSystem.h
index 3155df1..d7ca148 100644
--- a/src/crepe/system/ParticleSystem.h
+++ b/src/crepe/system/ParticleSystem.h
@@ -2,23 +2,20 @@
#include <cstdint>
+#include "System.h"
+
namespace crepe {
class ParticleEmitter;
class Transform;
/**
* \brief ParticleSystem class responsible for managing particle emission, updates, and bounds checking.
*/
-class ParticleSystem {
+class ParticleSystem : public System {
public:
/**
- * \brief Default constructor.
- */
- ParticleSystem();
-
- /**
* \brief Updates all particle emitters by emitting particles, updating particle states, and checking bounds.
*/
- void update();
+ void update() override;
private:
/**
@@ -66,9 +63,9 @@ private:
private:
//! Counter to count updates to determine how many times emit_particle is called.
- uint32_t update_count = 0;
+ unsigned int update_count = 0;
//! Determines the lowest amount of emission rate (1000 = 0.001 = 1 particle per 1000 updates).
- static constexpr uint32_t MAX_UPDATE_COUNT = 100;
+ static constexpr unsigned int MAX_UPDATE_COUNT = 100;
};
} // namespace crepe