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