massive cleaning of file section headers
[physics.git] / src / Entities / WindParticle.cpp
CommitLineData
ad9f1fb6 1#include "WindParticle.h"
617dcc71 2
ad9f1fb6
PG
3#include "../Vector2.h"
4
617dcc71
PG
5
6/// ***** Constructors/Destructors *****
7
5f1f55d1 8WindParticle::WindParticle(const Vector2& org, float life_time)
ad9f1fb6
PG
9 : Point(org, life_time)
10{
11
12}
13WindParticle::~WindParticle()
14{
15
16}
17
617dcc71
PG
18/// ***** Public Class Methods *****
19
ad9f1fb6
PG
20void WindParticle::update(float time_step)
21{
22 Point::update(time_step);
23 // TODO, insure particle is in the screen by moding
24}