aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/Particle.hpp
blob: 669a8ab8c6f2e2b53c03a0c390ab34fdbb287bcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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;
};