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