aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/Particle.h
blob: 006986a2eee53e940befe6e407032fef7b5667f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#pragma once

#include "Position.h"

namespace crepe {

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;
};

}