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