massive cleaning of file section headers
[physics.git] / src / Entities / Line.cpp
CommitLineData
ad9f1fb6 1#include "Line.h"
617dcc71 2
ad9f1fb6
PG
3#include "../Vector2.h"
4
617dcc71
PG
5
6/// ***** Constructors/Destructors *****
7
5f1f55d1 8Line::Line(const Vector2& org, const Vector2& dest, bool canDie)
ad9f1fb6
PG
9 : Particle(org, canDie), dest(dest)
10{
11
12}
5f1f55d1 13Line::Line(const Vector2& org, const Vector2& dest, float life_time)
ad9f1fb6
PG
14 : Particle(org, life_time), dest(dest)
15{
16
17}
18Line::~Line()
19{
20
21}
22
617dcc71
PG
23/// ***** Public Class Methods *****
24
ad9f1fb6
PG
25void Line::draw()
26{
27 // TODO
28}