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

} // namespace crepe