massive cleaning of file section headers
[physics.git] / src / Entities / WindParticle.h
CommitLineData
ad9f1fb6
PG
1#ifndef WINDPARTICLE_H
2#define WINDPARTICLE_H
3
4#include "Point.h"
5#include "../Vector2.h"
6
617dcc71 7
ad9f1fb6 8/// ***** Header Class *****
617dcc71 9
ad9f1fb6
PG
10class WindParticle: public Point
11{
12 public:
5f1f55d1 13 WindParticle(const Vector2&, float);
ad9f1fb6
PG
14 virtual ~WindParticle();
15
16 virtual void update(float);
17
18 protected:
19 float radius;
20 // color
21};
22
23#endif // POINT_H