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