aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/Particle.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/crepe/Particle.hpp')
-rw-r--r--src/crepe/Particle.hpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/crepe/Particle.hpp b/src/crepe/Particle.hpp
index f8d2770..f71fd67 100644
--- a/src/crepe/Particle.hpp
+++ b/src/crepe/Particle.hpp
@@ -3,8 +3,8 @@
class Particle {
public:
struct Position {
- int x;
- int y;
+ float x;
+ float y;
};
Position position;
@@ -14,6 +14,5 @@ public:
Particle(float lifespan, Position position, Position velocity);
void update(float deltaTime);
bool isAlive() const;
-private:
float timeInLife;
};