change Vector2 param to a const Vector2&
[physics.git] / src / Entities / Point.cpp
1 #include "Point.h"
2 #include "../Vector2.h"
3
4 /// ***** Public Class Methods *****
5 Point::Point(const Vector2& org, bool canDie)
6     : Particle(org, canDie), radius(2)
7 {
8
9 }
10 Point::Point(const 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 }