massive cleaning of file section headers
[physics.git] / src / Entities / Line.cpp
index 4814eff..d28947e 100644 (file)
@@ -1,7 +1,10 @@
 #include "Line.h"
+
 #include "../Vector2.h"
 
-/// ***** Public Class Methods *****
+
+/// ***** Constructors/Destructors *****
+
 Line::Line(const Vector2& org, const Vector2& dest, bool canDie)
     : Particle(org, canDie), dest(dest)
 {
@@ -17,6 +20,8 @@ Line::~Line()
 
 }
 
+/// ***** Public Class Methods *****
+
 void Line::draw()
 {
     // TODO