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