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