massive cleaning of file section headers
[physics.git] / src / Entities / Line.h
CommitLineData
ad9f1fb6
PG
1#ifndef LINE_H
2#define LINE_H
3
4#include "Particle.h"
5#include "../Vector2.h"
6
ad9f1fb6
PG
7
8/// ***** Header Class *****
617dcc71 9
ad9f1fb6
PG
10class Line: public Particle
11{
12 public:
5f1f55d1
PG
13 Line(const Vector2&, const Vector2&, bool=true);
14 Line(const Vector2&, const Vector2&, float);
ad9f1fb6
PG
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