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

#include <vector>
#include "ParticleEmitter.h"


namespace crepe {

class ParticleSystem {
public:
    ParticleSystem();
    void update();
private:
    void emitParticle(ParticleEmitter &emitter); //emits a new particle

    float m_elapsedTime; //elapsed time since the last emission
};

}