diff options
Diffstat (limited to 'src/crepe/Particle.hpp')
-rw-r--r-- | src/crepe/Particle.hpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/crepe/Particle.hpp b/src/crepe/Particle.hpp new file mode 100644 index 0000000..669a8ab --- /dev/null +++ b/src/crepe/Particle.hpp @@ -0,0 +1,20 @@ +#pragma once + +struct Position { + float x; + float y; + }; + +class Particle { +public: + + Position position; + Position velocity; + float lifespan; + bool active; + + Particle(); + void reset(float lifespan, Position position, Position velocity); + void update(float deltaTime); + float timeInLife; +}; |