aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/ParticleSystem.h
blob: 313e1dd204750434dbaadc59b66883b34f5fda51 (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 "api/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
};

}