a443cfae5184863f92f4188c6d101664e571fd47
[physics.git] / src / Entities / Point.cpp
1 #include "Point.h"
2
3 #include "../Vector2.h"
4
5
6 /// ***** Constructors/Destructors *****
7
8 Point::Point(const Vector2& org, bool canDie)
9     : Particle(org, canDie), radius(2)
10 {
11
12 }
13 Point::Point(const Vector2& org, float life_time)
14     : Particle(org, life_time), radius(2)
15 {
16
17 }
18 Point::~Point()
19 {
20
21 }
22
23 /// ***** Public Class Methods *****
24
25 void Point::draw()
26 {
27     // TODO
28 }