aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/Particle.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/Particle.h
parent767f40a61952892d60d204ecaaffa07e7e396d28 (diff)
Working color, fucked up git merge
Diffstat (limited to 'src/crepe/Particle.h')
-rw-r--r--src/crepe/Particle.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/crepe/Particle.h b/src/crepe/Particle.h
index 06431bb..3eaebc3 100644
--- a/src/crepe/Particle.h
+++ b/src/crepe/Particle.h
@@ -30,9 +30,8 @@ public:
//! The time the particle has been alive, in milliseconds.
uint32_t time_in_life = 0;
//! The angle at which the particle is oriented or moving.
- double angle;
+ double angle = 0;
- Particle() = default;
/**
* \brief Resets the particle with new properties.
*
@@ -44,8 +43,8 @@ public:
* \param velocity The initial velocity of the particle.
* \param angle The angle of the particle's trajectory or orientation.
*/
- void reset(uint32_t lifespan, Vector2 position, Vector2 velocity,
- double angle);
+ void reset(uint32_t lifespan, const Vector2 & position,
+ const Vector2 & velocity, double angle);
/**
* \brief Updates the particle's state.
*